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.
step!
1 parent 28ddeed commit fd7f7b2Copy full SHA for fd7f7b2
test/qn_test.jl
@@ -142,14 +142,16 @@ end
142
@test_throws r"no activators or inhibitors" default_target_function(0, 4)
143
end
144
145
-@testitem "Load from BMA" begin
+@testitem "Load from BMA" setup = [RandomSetup] begin
146
using JSON
147
+ using DynamicalSystemsBase: step!
148
bma_models_path = joinpath(@__DIR__, "resources", "bma_models")
149
good_models = joinpath(bma_models_path, "well_formed_examples")
150
151
for model_path in readdir(good_models; join = true)
152
qn = QN(model_path)
153
@test qn isa GraphDynamicalSystem
154
+ step!(create_qn_system(qn), 100)
155
156
157
bad_models = joinpath(bma_models_path, "error_examples")
0 commit comments