We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5e910ae commit 10bbf3dCopy full SHA for 10bbf3d
.github/workflows/main.yml
@@ -49,4 +49,4 @@ jobs:
49
uses: GabrielBB/xvfb-action@v1
50
with:
51
run: |
52
- bash -c "source $HOME/mambaforge/etc/profile.d/conda.sh && conda activate test_env && pytest --maxfail=5 --disable-warnings -v"
+ bash -c "source $HOME/mambaforge/etc/profile.d/conda.sh && conda activate test_env && python -m run_tests.py"
run_tests.py
@@ -0,0 +1,5 @@
1
+#!/usr/bin/env python
2
+
3
+import diffpy.pdfgui.tests
4
5
+assert diffpy.pdfgui.tests.testdeps().wasSuccessful()
0 commit comments