We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 897f683 commit 83af8c6Copy full SHA for 83af8c6
.github/workflows/main.yml
@@ -46,8 +46,10 @@ jobs:
46
mamba install --file requirements/test.txt
47
pip install -e .
48
49
- - name: Use Xvfb Action
50
- uses: GabrielBB/xvfb-action@v1
51
- with:
52
- run: |
53
- bash -c "source $HOME/mambaforge/etc/profile.d/conda.sh && conda activate test_env && python -m run_tests.py"
+ - name: Validate diffpy.pdfgui
+ shell: bash -l {0}
+ run: |
+ conda activate test
+ coverage run -m unittest run_tests.py
54
+ coverage report -m
55
+ codecov
run_tests.py
@@ -2,4 +2,5 @@
2
3
import diffpy.pdfgui.tests
4
5
+assert diffpy.pdfgui.tests.test().wasSuccessful()
6
assert diffpy.pdfgui.tests.testdeps().wasSuccessful()
setup.py
0 commit comments