Skip to content

Commit e092d7c

Browse files
authored
No longer use true for OS X pytest (#263)
1 parent 3a80b05 commit e092d7c

File tree

1 file changed

+2
-7
lines changed

1 file changed

+2
-7
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1010,13 +1010,8 @@ jobs:
10101010
echo ::endgroup::
10111011
echo ::group::Run complete test suite
10121012
set -o pipefail
1013-
if [[ "${{ matrix.os }}" != macos-* ]]; then
1014-
python -m pytest -sv | tee complete_testrun.log 2>&1
1015-
set +o pipefail
1016-
else
1017-
set +o pipefail
1018-
python -m pytest -sv | tee complete_testrun.log 2>&1 || true
1019-
fi
1013+
python -m pytest -sv | tee complete_testrun.log 2>&1
1014+
set +o pipefail
10201015
echo ::group::Crashing Test Logs
10211016
# See if we don't have a crash that went away
10221017
# Comment out all xfails but the ones that have a run=False condition.

0 commit comments

Comments
 (0)