We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1bf0f1e commit b5537f7Copy full SHA for b5537f7
1 file changed
.github/workflows/tests.yml
@@ -68,8 +68,11 @@ jobs:
68
69
- name: Run full test suite
70
run: |
71
- python -m pytest -vv \
72
- > full-output.txt 2>&1
+ python -m pytest -m "fast" -vv \
+ --html=fast-report.html \
73
+ --self-contained-html \
74
+ --junitxml=fast-report.xml
75
+
76
77
- name: Upload full test reports
78
uses: actions/upload-artifact@v4
@@ -78,4 +81,11 @@ jobs:
81
path: |
79
82
full-report.xml
80
83
full-report.html
- full-output.txt
84
85
+ - name: Upload fast test reports
86
+ uses: actions/upload-artifact@v4
87
+ with:
88
+ name: fast-test-reports
89
+ path: |
90
+ fast-report.html
91
+ fast-report.xml
0 commit comments