@@ -553,12 +553,12 @@ jobs:
553
553
clang-runtime : ' 17'
554
554
cling : Off
555
555
cppyy : On
556
- - name : osx14-arm-clang-clang-repl-16-cppyy
556
+ - name : osx14-arm-clang-clang-repl-16
557
557
os : macos-14
558
558
compiler : clang
559
559
clang-runtime : ' 16'
560
560
cling : Off
561
- cppyy : On
561
+ cppyy : Off
562
562
- name : osx14-arm-clang-clang13-cling-cppyy
563
563
os : macos-14
564
564
compiler : clang
@@ -584,12 +584,12 @@ jobs:
584
584
clang-runtime : ' 17'
585
585
cling : Off
586
586
cppyy : On
587
- - name : osx13-x86-clang-clang-repl-16-cppyy
587
+ - name : osx13-x86-clang-clang-repl-16
588
588
os : macos-13
589
589
compiler : clang
590
590
clang-runtime : ' 16'
591
591
cling : Off
592
- cppyy : On
592
+ cppyy : Off
593
593
- name : osx13-x86-clang-clang13-cling-cppyy
594
594
os : macos-13
595
595
compiler : clang
@@ -1018,21 +1018,21 @@ jobs:
1018
1018
echo ::endgroup::
1019
1019
echo ::group::Run complete test suite
1020
1020
set -o pipefail
1021
- python -m pytest -sv | tee complete_testrun.log 2>&1
1021
+ python -m pytest -sv -ra | tee complete_testrun.log 2>&1
1022
1022
set +o pipefail
1023
1023
echo ::group::Crashing Test Logs
1024
1024
# See if we don't have a crash that went away
1025
1025
# Comment out all xfails but the ones that have a run=False condition.
1026
1026
find . -name "*.py" -exec sed -i '/run=False/!s/^ *@mark.xfail\(.*\)/#&/' {} \;
1027
- python -m pytest -n 1 -m "xfail" --runxfail -sv --max-worker-restart 512 | tee test_crashed.log 2>&1 || true
1027
+ python -m pytest -n 1 -m "xfail" --runxfail -sv -ra - -max-worker-restart 512 | tee test_crashed.log 2>&1 || true
1028
1028
git checkout .
1029
1029
echo ::endgroup::
1030
1030
echo ::group::XFAIL Test Logs
1031
1031
# Rewrite all xfails that have a run clause to skipif. This way we will
1032
1032
# avoid conditionally crashing xfails
1033
1033
find . -name "*.py" -exec sed -i -E 's/(^ *)@mark.xfail\(run=(.*)/\[email protected] (condition=not \2/g' {} \;
1034
1034
# See if we don't have an xfail that went away
1035
- python -m pytest --runxfail -sv | tee test_xfailed.log 2>&1 || true
1035
+ python -m pytest --runxfail -sv -ra | tee test_xfailed.log 2>&1 || true
1036
1036
git checkout .
1037
1037
echo ::endgroup::
1038
1038
echo ::group::Passing Test Logs
@@ -1047,7 +1047,7 @@ jobs:
1047
1047
echo "Running valgrind on passing tests"
1048
1048
CLANG_VERSION="${{ matrix.clang-runtime }}"
1049
1049
SUPPRESSION_FILE="../etc/clang${CLANG_VERSION}-valgrind.supp"
1050
- valgrind --show-error-list=yes --error-exitcode=1 --track-origins=yes --suppressions="${SUPPRESSION_FILE}" --suppressions=../etc/valgrind-cppyy-cling.supp python -m pytest -m "not xfail" -v
1050
+ valgrind --show-error-list=yes --error-exitcode=1 --track-origins=yes --suppressions="${SUPPRESSION_FILE}" --suppressions=../etc/valgrind-cppyy-cling.supp python -m pytest -m "not xfail" -sv -ra
1051
1051
fi
1052
1052
export RETCODE=+$?
1053
1053
echo ::endgroup::
0 commit comments