Skip to content

Commit

Permalink
'Auto' bounds checks for 'long tests' CI job
Browse files Browse the repository at this point in the history
Try to avoid timeout causing tests to fail. Possibly with Julia-1.11.x,
`--check-bounds=yes` runs have become significantly slower than with
Julia-1.10.x, so going back to `--check-bounds=auto` might help
significantly?
  • Loading branch information
johnomotani committed Feb 7, 2025
1 parent 40ca411 commit 04ed2fd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/longtest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,5 +30,5 @@ jobs:
# https://github.com/julia-actions/julia-runtest/blob/master/action.yml
# in order to pass customised arguments to `Pkg.test()`
- run: |
julia --check-bounds=yes --color=yes --depwarn=yes --project=moment_kinetics/ -e 'import Pkg; Pkg.test(; test_args=["--ci", "--long", "--force-optional-dependencies"])'
julia --color=yes --depwarn=yes --project=moment_kinetics/ -e 'import Pkg; Pkg.test(; test_args=["--ci", "--long", "--force-optional-dependencies"], julia_args=["--check-bounds=auto"])'
shell: bash

0 comments on commit 04ed2fd

Please sign in to comment.