Skip to content

Commit 0b1adbb

Browse files
committed
add separate testenv for Inspector
1 parent c5fa129 commit 0b1adbb

File tree

3 files changed

+37
-15
lines changed

3 files changed

+37
-15
lines changed

.github/workflows/CompatHelper.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,14 @@ jobs:
3737
- name: "Run CompatHelper"
3838
run: |
3939
import CompatHelper
40-
CompatHelper.main(; subdirs=["", "docs", "test", "benchmark", "NetworkDynamicsInspector"])
40+
CompatHelper.main(; subdirs=[
41+
"",
42+
"docs",
43+
"test",
44+
"benchmark",
45+
"NetworkDynamicsInspector",
46+
"NetworkDynamicsInspector/test",
47+
])
4148
shell: julia --color=yes {0}
4249
env:
4350
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

NetworkDynamicsInspector/Project.toml

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -25,28 +25,14 @@ NetworkDynamics = {path = ".."}
2525
ElectronExt = ["Electron"]
2626

2727
[compat]
28-
Aqua = "0.8.9"
2928
Bonito = "4.0.0"
3029
ColorSchemes = "3.29.0"
3130
Colors = "0.13.0"
32-
Electron = "6"
33-
ExplicitImports = "1.10.1"
3431
GraphMakie = "0.5.14"
3532
Graphs = "1.12.0"
3633
NetworkDynamics = "0.9.13"
3734
Observables = "0.5.5"
3835
OrderedCollections = "1.8.0"
3936
SciMLBase = "2.75.1"
40-
Test = "1"
4137
WGLMakie = "0.11"
4238
julia = "1.10"
43-
44-
[extras]
45-
Aqua = "4c88cf16-eb10-579e-8560-4a9242c79595"
46-
ExplicitImports = "7d51a73a-1435-4ff3-83d9-f097790105c7"
47-
ModelingToolkit = "961ee093-0014-501f-94e3-6117800e7a78"
48-
OrdinaryDiffEqTsit5 = "b1df2697-797e-41e3-8120-5422d3b24e4a"
49-
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
50-
51-
[targets]
52-
test = ["Aqua", "Electron", "ExplicitImports", "ModelingToolkit", "OrdinaryDiffEqTsit5", "Test"]
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name = "Inspector-Tests"
2+
3+
[deps]
4+
Aqua = "4c88cf16-eb10-579e-8560-4a9242c79595"
5+
Bonito = "824d6782-a2ef-11e9-3a09-e5662e0c26f8"
6+
Electron = "a1bb12fb-d4d1-54b4-b10a-ee7951ef7ad3"
7+
ExplicitImports = "7d51a73a-1435-4ff3-83d9-f097790105c7"
8+
Graphs = "86223c79-3864-5bf0-83f7-82e725a168b6"
9+
NetworkDynamics = "22e9dc34-2a0d-11e9-0de0-8588d035468b"
10+
NetworkDynamicsInspector = "0a4713f2-d58f-43f2-b63b-1b5d5ee4e65a"
11+
ModelingToolkit = "961ee093-0014-501f-94e3-6117800e7a78"
12+
OrdinaryDiffEqTsit5 = "b1df2697-797e-41e3-8120-5422d3b24e4a"
13+
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
14+
WGLMakie = "276b4fcb-3e11-5398-bf8b-a0c2d153d008"
15+
16+
[sources]
17+
NetworkDynamics = {path = "../.."}
18+
NetworkDynamicsInspector = {path = ".."}
19+
20+
[compat]
21+
Aqua = "0.8.9"
22+
Bonito = "≥0.0.1"
23+
Electron = "6"
24+
ExplicitImports = "1.10.1"
25+
Graphs = "≥0.0.1"
26+
NetworkDynamics = "≥0.0.1"
27+
NetworkDynamicsInspector = "≥0.0.1"
28+
Test = "1"
29+
WGLMakie = "≥0.0.1"

0 commit comments

Comments
 (0)