File tree 2 files changed +6
-7
lines changed
2 files changed +6
-7
lines changed Original file line number Diff line number Diff line change @@ -19,14 +19,12 @@ jobs:
19
19
python-version : ${{ matrix.python-version }}
20
20
architecture : x64
21
21
- name : Install Covasim
22
- run : |
23
- pip install line_profiler==3.1
24
- python setup.py develop
22
+ run : python setup.py develop
23
+ - name : Install tests
24
+ run : pip install pytest
25
25
- name : Run integration tests
26
26
working-directory : ./tests
27
- run : |
28
- pip install pytest
29
- pytest test*.py --durations=0 # Run actual tests
27
+ run : pytest test_*.py --durations=0
30
28
- name : Run unit tests
31
29
working-directory : ./tests/unittests
32
- run : pytest test *.py --durations=0 # Run actual tests
30
+ run : pytest test_ *.py --durations=0
Original file line number Diff line number Diff line change @@ -5,4 +5,5 @@ statsmodels
5
5
matplotlib
6
6
pandas
7
7
xlrd == 1.2.0
8
+ line_profiler == 3.1
8
9
sciris >= 1.0.0
You can’t perform that action at this time.
0 commit comments