Skip to content

Commit b5537f7

Browse files
author
Jonas Danke
committed
update
1 parent 1bf0f1e commit b5537f7

1 file changed

Lines changed: 13 additions & 3 deletions

File tree

.github/workflows/tests.yml

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -68,8 +68,11 @@ jobs:
6868
6969
- name: Run full test suite
7070
run: |
71-
python -m pytest -vv \
72-
> full-output.txt 2>&1
71+
python -m pytest -m "fast" -vv \
72+
--html=fast-report.html \
73+
--self-contained-html \
74+
--junitxml=fast-report.xml
75+
7376
7477
- name: Upload full test reports
7578
uses: actions/upload-artifact@v4
@@ -78,4 +81,11 @@ jobs:
7881
path: |
7982
full-report.xml
8083
full-report.html
81-
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

Comments
 (0)