We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 65e803c commit 9c11972Copy full SHA for 9c11972
1 file changed
.github/workflows/build-test.yml
@@ -19,15 +19,9 @@ jobs:
19
- name: Install dependencies
20
run: |
21
python -m pip install --upgrade pip
22
- python -m pip install flake8 pytest
23
- if [ -f tests/test_requirements.txt ]; then python -m pip install -r tests/test_requirements.txt; fi
24
- - name: Setup yt_idv
+ python -m pip install -r requirements_dev.txt
+ - name: Setup yt_xarray
25
26
python -m pip install -e .
27
- name: Run Tests
28
- run: pytest --html=report.html --self-contained-html
29
- - uses: actions/upload-artifact@v2
30
- name: Upload pytest report
31
- with:
32
- name: pytest-report
33
- path: report.html
+ run: pytest
0 commit comments