We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 919f239 commit 0a21483Copy full SHA for 0a21483
.github/workflows/main.yml
@@ -46,13 +46,11 @@ jobs:
46
conda install --file requirements/test.txt
47
pip install .
48
49
- - name: Use Xvfb Action
+ - name: Use Xvfb Action and run tests
50
uses: GabrielBB/xvfb-action@v1
51
-
52
- - name: Validate diffpy.pdfgui
53
- shell: bash -l {0}
54
- run: |
55
- conda activate test
56
- coverage run -m pytest -vv -s
57
- coverage report -m
58
- codecov
+ with:
+ run: |
+ conda activate test
+ coverage run -m pytest -vv -s
+ coverage report -m
+ codecov
0 commit comments