Skip to content

Commit a8591a4

Browse files
test: move FMI tests to separate environment
1 parent ba5221c commit a8591a4

File tree

12 files changed

+20
-3
lines changed

12 files changed

+20
-3
lines changed

.github/workflows/Tests.yml

+1
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ jobs:
3838
- Extensions
3939
- Downstream
4040
- RegressionI
41+
- FMI
4142
uses: "SciML/.github/.github/workflows/tests.yml@v1"
4243
with:
4344
julia-version: "${{ matrix.version }}"

test/extensions/Project.toml

-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22
BifurcationKit = "0f109fa4-8a5d-4b75-95aa-f515264e7665"
33
ChainRulesCore = "d360d2e6-b24c-11e9-a2a3-2a2ae2dbcce4"
44
ChainRulesTestUtils = "cdddcdb0-9152-4a09-a978-84456f9df70a"
5-
FMI = "14a09403-18e3-468f-ad8a-74f8dda2d9ac"
6-
FMIZoo = "724179cf-c260-40a9-bd27-cccc6fe2f195"
75
ForwardDiff = "f6369f11-7733-5829-9624-2563aa707210"
86
HomotopyContinuation = "f213a82b-91d6-5c5d-acf7-10f1c761b327"
97
InfiniteOpt = "20393b10-9daf-11e9-18c9-8db751c92c57"

test/fmi/Project.toml

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
[deps]
2+
FMI = "14a09403-18e3-468f-ad8a-74f8dda2d9ac"
3+
FMIZoo = "724179cf-c260-40a9-bd27-cccc6fe2f195"
4+
ModelingToolkit = "961ee093-0014-501f-94e3-6117800e7a78"
5+
OrdinaryDiffEq = "1dea7af3-3e70-54e6-95c3-0bf5283fa5ed"
6+
7+
[compat]
8+
FMI = "0.14"
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

test/runtests.jl

+11-1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@ import REPL
44

55
const GROUP = get(ENV, "GROUP", "All")
66

7+
function activate_fmi_env()
8+
Pkg.activate("fmi")
9+
Pkg.develop(PackageSpec(path = dirname(@__DIR__)))
10+
Pkg.instantiate()
11+
end
12+
713
function activate_extensions_env()
814
Pkg.activate("extensions")
915
Pkg.develop(PackageSpec(path = dirname(@__DIR__)))
@@ -115,9 +121,13 @@ end
115121
@safetestset "Analysis Points Test" include("downstream/analysis_points.jl")
116122
end
117123

124+
if GROUP == "All" || GROUP == "FMI"
125+
activate_fmi_env()
126+
@safetestset "FMI Extension Test" include("fmi/fmi.jl")
127+
end
128+
118129
if GROUP == "All" || GROUP == "Extensions"
119130
activate_extensions_env()
120-
@safetestset "FMI Extension Test" include("extensions/fmi.jl")
121131
@safetestset "HomotopyContinuation Extension Test" include("extensions/homotopy_continuation.jl")
122132
@safetestset "Auto Differentiation Test" include("extensions/ad.jl")
123133
@safetestset "LabelledArrays Test" include("labelledarrays.jl")

0 commit comments

Comments
 (0)