Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/MacOS.yml
Original file line number Diff line number Diff line change
Expand Up @@ -558,7 +558,7 @@ jobs:
echo ::endgroup::
echo ::group::Run complete test suite
set -o pipefail
python -m pytest -v -ra | tee complete_testrun.log 2>&1
python -m pytest -v -ra -n ${{ env.ncpus }} | tee complete_testrun.log 2>&1
set +o pipefail
echo ::group::Crashing Test Logs
# See if we don't have a crash that went away
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/Ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -576,13 +576,13 @@ jobs:
echo ::endgroup::
echo ::group::Run complete test suite
set -o pipefail
python -m pytest -v -ra | tee complete_testrun.log 2>&1
python -m pytest -v -ra -n ${{ env.ncpus }}| tee complete_testrun.log 2>&1
set +o pipefail
echo ::group::Crashing Test Logs
# See if we don't have a crash that went away
# Comment out all xfails but the ones that have a run=False condition.
find . -name "*.py" -exec sed -i '/run=False/!s/^ *@mark.xfail\(.*\)/#&/' {} \;
python -m pytest -n 1 -m "xfail" --runxfail -v -ra --max-worker-restart 512 | tee test_crashed.log 2>&1 || true
python -m pytest -n ${{ env.ncpus }} -m "xfail" --runxfail -v -ra --max-worker-restart 512 | tee test_crashed.log 2>&1 || true
git checkout .
echo ::endgroup::
echo ::group::XFAIL Test Logs
Expand Down Expand Up @@ -616,7 +616,7 @@ jobs:
fi
export IS_VALGRIND=true
if [[ "${{ matrix.Valgrind }}" == "On" ]]; then
valgrind --show-error-list=yes --error-exitcode=1 --track-origins=yes --gen-suppressions=all --suppressions="${SUPPRESSION_FILE}" --suppressions=../etc/valgrind-cppyy-cling.supp python -m pytest -m "not xfail" -v -ra --ignore=test_leakcheck.py
valgrind --show-error-list=yes --error-exitcode=1 --track-origins=yes --gen-suppressions=all --suppressions="${SUPPRESSION_FILE}" --suppressions=../etc/valgrind-cppyy-cling.supp python -m pytest -m "not xfail" -v -ra -n ${{ env.ncpus }} --ignore=test_leakcheck.py
fi
export RETCODE=+$?
unset IS_VALGRIND
Expand Down
Loading