We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e591a5c commit d520e95Copy full SHA for d520e95
.github/workflows/test-fastmon-utils.yml
@@ -26,5 +26,12 @@ jobs:
26
env:
27
PYTEST_DISABLE_PLUGIN_AUTOLOAD: '1' # avoid loading external pytest plugins
28
run: |
29
- pytest -vs -q src/swf_fastmon_agent/tests/test_fastmon_utils.py
+ pytest -vs -q --junitxml=test-results.xml src/swf_fastmon_agent/tests/test_fastmon_utils.py
30
+
31
+ - name: Test results
32
+ uses: EnricoMi/publish-unit-test-result-action@v2
33
+ if: always()
34
+ with:
35
+ files: test-results.xml
36
+ check_name: FastMon Utils Test Results
37
0 commit comments