Skip to content

Commit

Permalink
Disable a few specific ncrystaldev tests on macos
Browse files Browse the repository at this point in the history
  • Loading branch information
tkittel committed Mar 5, 2024
1 parent f9aee12 commit 1777fc8
Showing 1 changed file with 16 additions and 2 deletions.
18 changes: 16 additions & 2 deletions .github/workflows/condatest_essncrystaldev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,22 @@ jobs:
set -eux
geant4-config --version
cd src_testproject
sb -t --testexcerpts=100 --testfilter='!sb_nclong*' --requirepkg=DGCodeRecommended,NCUtils,NCG4,NCTests,NCThreadVal,NCPerfVal
sb -t --testexcerpts=100 --testfilter='sb_nclong*' --requirepkg=DGCodeRecommended,NCLongTests,NCLongG4Tests,NCLongExtraTests
export common_testargs='-t --testexcerpts=100 --requirepkg=DGCodeRecommended,NCUtils,NCG4,NCTests,NCThreadVal,NCPerfVal'
#For quicker feedback, first NCTests, then run everything else except
#the NCLong* tests, then run the NCLong* tests afterwards.
sb ${common_testargs} --testfilter='sb_nctests_*'
sb ${common_testargs} --testfilter='!sb_nclong*,!sb_nctests_*'
export tmp='sb_nclong*'
if [ "$RUNNER_OS" == "macOS" ]; then
#Disable a few specific tests on macos until
#https://github.com/mctools/ncrystal/issues/167 is resolved.
export tmp="${tmp}"',!sb_nclongextratests_testdosplot'
export tmp="${tmp}"',!sb_nclongextratests_testplots2'
export tmp="${tmp}"',!sb_nclongtests_testloadvdos'
export tmp="${tmp}"',!sb_nclongtests_testrange'
export tmp="${tmp}"',!sb_nclongtests_vdosloaddbg'
fi
sb ${common_testargs} --testfilter="{$tmp}"
- name: Setup tmate session for manual debugging
uses: mxschmitt/action-tmate@v3
Expand Down

0 comments on commit 1777fc8

Please sign in to comment.