From e28f4238cd9e593ddfe1043184c4364619a902ac Mon Sep 17 00:00:00 2001 From: nhz2 Date: Tue, 3 Oct 2023 09:13:25 -0400 Subject: [PATCH] CI and windows fixes --- .github/workflows/CI.yml | 2 +- test/test_ref_out.jl | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index fcbfa0f..bb135e1 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -22,7 +22,7 @@ jobs: matrix: version: - '1.9' - - '~1.10.0-' + - '~1.10.0' - 'nightly' os: - ubuntu-latest diff --git a/test/test_ref_out.jl b/test/test_ref_out.jl index a52d23f..8c7817e 100644 --- a/test/test_ref_out.jl +++ b/test/test_ref_out.jl @@ -19,7 +19,7 @@ warn_only_logger = MinLevelLogger(current_logger(), Logging.Warn); @testset "full run example" begin for continue_sim in (true,false) - test_out = joinpath(@__DIR__, "example/output/full",continue_sim ? "con" : "start") + test_out = joinpath(@__DIR__, "example/output/full",continue_sim ? "conti" : "start") rm(test_out; force=true, recursive=true) args = ["--out=$test_out","--batch=1"] continue_sim && push!(args,"--continue")