diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 4f4b2996..90d81ede 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -1,25 +1,12 @@ -# [.github/workflows/CI.yml] name: CI + on: push: branches: - main tags: '*' pull_request: + jobs: call: - strategy: - matrix: - version: - - '1.10' - - '1.11' - - '1.12' - os: - - ubuntu-latest - arch: - - x64 uses: control-toolbox/CTActions/.github/workflows/ci.yml@main - with: - version: ${{ matrix.version }} - os: ${{ matrix.os }} - arch: ${{ matrix.arch }} diff --git a/test/runtests.jl b/test/runtests.jl index 782ea48e..224e27c8 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -44,7 +44,10 @@ import CTParser: CTParser, @def include("solution_example_path_constraints.jl") @testset verbose = true showtiming = true "CTModels tests" begin - for name in (:plot, :export_import) + for name in ( + :plot, + # :export_import, + ) @testset "$(name)" begin test_name = Symbol(:test_, name) println("testing: ", string(name))