Skip to content

Commit bf9c308

Browse files
committed
Restore previous XFAIL behaviour
This did not have the expected effect of preventing diff output for tests that expect failures, so it can be reverted.
1 parent c4755c8 commit bf9c308

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.evergreen/run-tests.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ echo "Running $AUTH tests, connecting to $MONGODB_URI"
2626
# Run the tests, and store the results in a Evergreen compatible JSON results file
2727
case "$OS" in
2828
*)
29-
TEST_PHP_ARGS="-q -x --show-diff -g FAIL,BORK,WARN,LEAK,SKIP" make test TESTS=$TESTS
29+
TEST_PHP_ARGS="-q -x --show-diff -g FAIL,XFAIL,BORK,WARN,LEAK,SKIP" make test TESTS=$TESTS
3030
;;
3131
esac
3232

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,6 @@ jobs:
6464
run: "make all"
6565

6666
- name: "Run Tests"
67-
run: TEST_PHP_ARGS="-q -x --show-diff -g FAIL,BORK,WARN,LEAK,SKIP" make test
67+
run: TEST_PHP_ARGS="-q -x --show-diff -g FAIL,XFAIL,BORK,WARN,LEAK,SKIP" make test
6868
env:
6969
MONGODB_URI: ${{ steps.setup-mongodb.outputs.cluster-uri }}

0 commit comments

Comments
 (0)