Skip to content

Commit b7bbe97

Browse files
committed
Test with force failk after do scripts
1 parent 846b96a commit b7bbe97

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/simple.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,11 @@ jobs:
3838
# Build first with matrix config
3939
${{ matrix.config }} ${{ matrix.force_fail }} ./scripts/build-wolfprovider.sh || BUILD_RESULT=$?
4040
41-
# Run all tests regardless of build result
42-
${{ matrix.force_fail }} ./scripts/cmd_test/do-cmd-tests.sh || TEST_RESULT=$?
41+
# Run all tests
42+
./scripts/cmd_test/do-cmd-tests.sh || TEST_RESULT=$?
43+
44+
# Run all tests with force fail
45+
WOLFPROV_FORCE_FAIL=1 ./scripts/cmd_test/do-cmd-tests.sh || TEST_RESULT=$?
4346
4447
# For force_fail, we expect failures (return 1)
4548
if [ -n "${{ matrix.force_fail }}" ]; then

0 commit comments

Comments
 (0)