Skip to content

Commit

Permalink
Merge pull request #257 from mabarnes/fix-macos-long-ci
Browse files Browse the repository at this point in the history
Reduce max output file path lengths in restart_interpolation_tests.jl
  • Loading branch information
johnomotani authored Sep 18, 2024
2 parents b0cce85 + 9019c32 commit 43c0dad
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions moment_kinetics/test/restart_interpolation_tests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -104,8 +104,8 @@ function run_test(test_input, base, message, rtol, atol; tol_3V, args...)
name = string(name, "_", (stringify_arg(k, v) for (k, v) in args)...)
end
# Make sure name is not too long
if length(name) > 90
name = name[1:90]
if length(name) > 80
name = name[1:80]
end
if parallel_io
name *= "parallel-io"
Expand Down

0 comments on commit 43c0dad

Please sign in to comment.