File tree Expand file tree Collapse file tree 1 file changed +13
-5
lines changed Expand file tree Collapse file tree 1 file changed +13
-5
lines changed Original file line number Diff line number Diff line change @@ -29,10 +29,18 @@ jobs:
29
29
30
30
- name : Install test dependencies
31
31
run : |
32
- python -m pip install pytest pytest-xdist
33
- - name : List pip package versions
34
- run : python -m pip freeze --local
32
+ python -m pip install --upgrade pip
33
+ python -m pip install pytest pytest-xdist --editable .
34
+ python -m pip freeze --local
35
35
36
- - name : Run tests
36
+ - name : Run tests not requiring xarray
37
37
run : |
38
- python -m pytest tests -v -n auto
38
+ python -m pytest -n auto --ignore run_sample.py --ignore tests/test_run_sample.py
39
+
40
+ - name : Install xarray
41
+ run : |
42
+ python -m pip install xarray h5netcdf
43
+
44
+ - name : Run tests requiring xarray
45
+ run : |
46
+ python -m pytest -n auto tests/test_run_sample.py
You can’t perform that action at this time.
0 commit comments