Skip to content

Commit

Permalink
[GHA] disabled LM objfunc test on MacOS
Browse files Browse the repository at this point in the history
Cannot figure out what the problem is, but the test works on Ubuntu and Windows
  • Loading branch information
KrisThielemans committed May 14, 2024
1 parent 267c161 commit 4635891
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -350,7 +350,10 @@ jobs:
fi
# don't run all of them in Debug mode as it takes too long
if test ${BUILD_TYPE} = Debug; then
EXCLUDE_Debug="test_data_processor_projectors|test_export_array|test_ArcCorrection"
# Also excluding test_PoissonLogLikelihoodWithLinearModelForMeanAndListModeDataWithProjMatrixByBin
# as it is a bit slow. Moreover it fails on MacOS (Debug)
# https://github.com/UCL/STIR/pull/1418#issuecomment-2109518132
EXCLUDE_Debug="test_data_processor_projectors|test_export_array|test_ArcCorrection|test_PoissonLogLikelihoodWithLinearModelForMeanAndListModeDataWithProjMatrixByBin"
EXCLUDE="${EXCLUDE_Debug}${EXCLUDE:+"|"}${EXCLUDE}"
fi
# prepend -E
Expand Down

0 comments on commit 4635891

Please sign in to comment.