File tree Expand file tree Collapse file tree 3 files changed +21
-1
lines changed Expand file tree Collapse file tree 3 files changed +21
-1
lines changed Original file line number Diff line number Diff line change 78
78
cd examples
79
79
python Example1.py
80
80
81
-
82
81
- name : Install MDF
83
82
run : |
84
83
@@ -100,6 +99,16 @@ jobs:
100
99
make clean
101
100
make html
102
101
102
+ - name : Install and test with OMV
103
+ run : |
104
+ pip install git+https://github.com/OpenSourceBrain/osb-model-validation
105
+ pip install scipy sympy matplotlib cython pandas tables
106
+
107
+ # Run OMV tests on all engines
108
+ omv all -V
109
+
110
+ omv list -V # list installed engines
111
+
103
112
- name : Final version info
104
113
run : |
105
114
pip list
Original file line number Diff line number Diff line change
1
+ # Script for running automated tests on OSB using Travis-CI, see https://github.com/OpenSourceBrain/osb-model-validation
2
+
3
+ # This test will validate NeuroML 2 files in the current directory using: jnml -validate *.nml
4
+ target: "*.nml TestNeuroML.xml"
5
+ engine: jNeuroML_validate
Original file line number Diff line number Diff line change @@ -31,6 +31,10 @@ cd ../..
31
31
32
32
pytest tests -v
33
33
34
+ # # Run OMV tests
35
+
36
+ omv all -V
37
+
34
38
35
39
# # Generate the docs
36
40
@@ -42,4 +46,6 @@ make clean
42
46
make html
43
47
cd ..
44
48
49
+ # # Format all file
50
+
45
51
pre-commit run --all-files
You can’t perform that action at this time.
0 commit comments