-
-
Notifications
You must be signed in to change notification settings - Fork 211
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
test: make initializaton tests runnable from OrdinaryDiffEq #3232
test: make initializaton tests runnable from OrdinaryDiffEq #3232
Conversation
test/runtests.jl
Outdated
@@ -33,7 +33,6 @@ end | |||
@safetestset "Dynamic Quantities Test" include("dq_units.jl") | |||
@safetestset "Unitful Quantities Test" include("units.jl") | |||
@safetestset "Mass Matrix Test" include("mass_matrix.jl") | |||
@safetestset "InitializationSystem Test" include("initializationsystem.jl") | |||
@safetestset "Guess Propagation" include("guess_propagation.jl") | |||
@safetestset "Hierarchical Initialization Equations" include("hierarchical_initialization_eqs.jl") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
also move this?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Also initial Values test?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
And guess propagation?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
All three of those are purely MTK functionalities, though? Why would OrdinaryDiffEq need to test them?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
They are initialization tests
936ba39
to
861e7ae
Compare
test/runtests.jl
Outdated
@safetestset "Equation Type Accessors Test" include("equation_type_accessors.jl") | ||
@safetestset "Equations with complex values" include("complex.jl") | ||
end | ||
end | ||
|
||
if GROUP == "All" || GROUP == "InterfaceI" || GROUP == "Initialization" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
if GROUP == "All" || GROUP == "InterfaceI" || GROUP == "Initialization" | |
if GROUP == "All" || GROUP == "Initialization" |
And just make a new test group in the Github CI. We keep putting everything into InterfaceI so fully splitting is good!
861e7ae
to
d73342d
Compare
OrdinaryDiffEq otherwise does not test
OverrideInit
Checklist
contributor guidelines, in particular the SciML Style Guide and
COLPRAC.
Additional context
Add any other context about the problem here.