Skip to content

Commit f4a0af1

Browse files
authored
Validate models in test_targets.py (#417)
1 parent 3ab6e73 commit f4a0af1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/test_targets.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,8 +66,8 @@ def test_fmi3():
6666

6767
models = ['BouncingBall', 'Dahlquist', 'LinearTransform', 'Resource', 'Stair', 'VanDerPol', 'Feedthrough']
6868

69-
# for model in models:
70-
# validate(build_dir, model=model, fmi_types=['ModelExchange', 'CoSimulation'])
69+
for model in models:
70+
validate(build_dir, model=model, fmi_types=['ModelExchange', 'CoSimulation'])
7171

7272
for model in models:
7373
for interface_type in ['cs', 'me']:

0 commit comments

Comments
 (0)