Skip to content

Commit c80c483

Browse files
test: move jump control tests to Extensions test group
1 parent ef5af31 commit c80c483

File tree

4 files changed

+9
-5
lines changed

4 files changed

+9
-5
lines changed

test/downstream/Project.toml

-4
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,6 @@
11
[deps]
22
ControlSystemsMTK = "687d7614-c7e5-45fc-bfc3-9ee385575c88"
33
DataInterpolations = "82cc6244-b520-54b8-b5a6-8a565e85f1d0"
4-
DiffEqDevTools = "f3b72e0c-5b89-59e1-b016-84e28bfd966d"
5-
InfiniteOpt = "20393b10-9daf-11e9-18c9-8db751c92c57"
6-
Ipopt = "b6b21f68-93f8-5de0-b562-5493be1d77c9"
7-
JuMP = "4076af6c-e467-56ae-b986-b466b2749572"
84
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
95
ModelingToolkit = "961ee093-0014-501f-94e3-6117800e7a78"
106
ModelingToolkitStandardLibrary = "16a59e39-deab-5bd0-87e4-056b12336739"

test/extensions/Project.toml

+8
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,26 @@
22
BifurcationKit = "0f109fa4-8a5d-4b75-95aa-f515264e7665"
33
ChainRulesCore = "d360d2e6-b24c-11e9-a2a3-2a2ae2dbcce4"
44
ChainRulesTestUtils = "cdddcdb0-9152-4a09-a978-84456f9df70a"
5+
DataInterpolations = "82cc6244-b520-54b8-b5a6-8a565e85f1d0"
6+
DiffEqBase = "2b5f629d-d688-5b77-993f-72d75c75574e"
7+
DiffEqDevTools = "f3b72e0c-5b89-59e1-b016-84e28bfd966d"
58
ForwardDiff = "f6369f11-7733-5829-9624-2563aa707210"
69
HomotopyContinuation = "f213a82b-91d6-5c5d-acf7-10f1c761b327"
710
InfiniteOpt = "20393b10-9daf-11e9-18c9-8db751c92c57"
11+
Ipopt = "b6b21f68-93f8-5de0-b562-5493be1d77c9"
812
JuMP = "4076af6c-e467-56ae-b986-b466b2749572"
913
LabelledArrays = "2ee39098-c373-598a-b85f-a56591580800"
1014
ModelingToolkit = "961ee093-0014-501f-94e3-6117800e7a78"
1115
Nemo = "2edaba10-b0f1-5616-af89-8c11ac63239a"
1216
NonlinearSolveHomotopyContinuation = "2ac3b008-d579-4536-8c91-a1a5998c2f8b"
17+
OrdinaryDiffEqFIRK = "5960d6e9-dd7a-4743-88e7-cf307b64f125"
1318
OrdinaryDiffEqNonlinearSolve = "127b3ac7-2247-4354-8eb6-78cf4e7c58e8"
19+
OrdinaryDiffEqSDIRK = "2d112036-d095-4a1e-ab9a-08536f3ecdbf"
1420
OrdinaryDiffEqTsit5 = "b1df2697-797e-41e3-8120-5422d3b24e4a"
21+
OrdinaryDiffEqVerner = "79d7bb75-1356-48c1-b8c0-6832512096c2"
1522
SciMLSensitivity = "1ed8b502-d754-442c-8d5d-10ac956f44a1"
1623
SciMLStructures = "53ae85a6-f571-4167-b2af-e1d143709226"
24+
SimpleDiffEq = "05bca326-078c-5bf0-a5bf-ce7c7982d7fd"
1725
SymbolicIndexingInterface = "2efcf032-c050-4f8e-a9bb-153293bab1f5"
1826
Symbolics = "0c5d862f-8b57-4792-8d23-62f2024744c7"
1927
Zygote = "e88e6eb3-aa80-5325-afca-941959d7151f"
File renamed without changes.

test/runtests.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,6 @@ end
122122

123123
if GROUP == "All" || GROUP == "Downstream"
124124
activate_downstream_env()
125-
@safetestset "JuMP Collocation Solvers" include("downstream/jump_control.jl")
126125
@safetestset "Linearization Tests" include("downstream/linearize.jl")
127126
@safetestset "Linearization Dummy Derivative Tests" include("downstream/linearization_dd.jl")
128127
@safetestset "Inverse Models Test" include("downstream/inversemodel.jl")
@@ -137,6 +136,7 @@ end
137136

138137
if GROUP == "All" || GROUP == "Extensions"
139138
activate_extensions_env()
139+
@safetestset "JuMP Collocation Solvers" include("extensions/jump_control.jl")
140140
@safetestset "HomotopyContinuation Extension Test" include("extensions/homotopy_continuation.jl")
141141
@safetestset "Auto Differentiation Test" include("extensions/ad.jl")
142142
@safetestset "LabelledArrays Test" include("labelledarrays.jl")

0 commit comments

Comments
 (0)