File tree Expand file tree Collapse file tree 2 files changed +5
-10
lines changed
Expand file tree Collapse file tree 2 files changed +5
-10
lines changed Original file line number Diff line number Diff line change @@ -17,13 +17,10 @@ jobs:
1717 uses : actions/setup-python@v4
1818 with :
1919 python-version : ${{ matrix.python-version }}
20- - name : Install dependencies
21- run : |
22- python -m pip install --upgrade pip
23- python -m pip install -r requirements_dev.txt
2420 - name : Setup yt_xarray
2521 run : |
26- python -m pip install -e .
22+ python -m pip install --upgrade pip
23+ python -m pip install -e .[full,test]
2724 - name : Run Tests
2825 run : pytest --cov=./ --cov-report=xml:coverage/coverage.xml
2926
Original file line number Diff line number Diff line change 2020 uses : actions/setup-python@v4
2121 with :
2222 python-version : ${{ matrix.python-version }}
23- - name : Install dependencies
24- run : |
25- python -m pip install --upgrade pip
26- python -m pip install -r requirements_dev.txt
2723 - name : Setup yt_xarray
28- run : python -m pip install -e .
24+ run : |
25+ python -m pip install --upgrade pip
26+ python -m pip install -e .[full,test]
2927 - name : Run Tests
3028 run : pytest -v .
You can’t perform that action at this time.
0 commit comments