We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ae77b9d commit 7f83a16Copy full SHA for 7f83a16
test/runsimulationtests.jl
@@ -19,7 +19,11 @@ end
19
include("models/TestEquations.jl")
20
21
include("models/TestElectrical.jl")
22
- include("models/TestFilter.jl")
+ @static if VERSION < v"0.7.0-DEV.2005"
23
+ # Don't run TestFilter since aliasElimination=true does not work under 0.6
24
+ else
25
+ include("models/TestFilter.jl")
26
+ end
27
include("models/TestArrayOfComponents.jl")
28
include("models/TestConditionalComponents.jl")
29
include("models/TestConditionalEquations.jl")
0 commit comments