We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 49c1ebf commit 9d4417fCopy full SHA for 9d4417f
.github/workflows/python-app.yml
@@ -1,7 +1,7 @@
1
# This workflow will install Python dependencies, run tests and lint with a single version of Python
2
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
3
4
-name: Python application
+name: Data-Anonymity-RL
5
6
on:
7
push:
@@ -33,8 +33,9 @@ jobs:
33
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
34
- name: Test with unittest
35
run: |
36
- pytest
+ pytest tests/test_suite.py -v --junitxml="test_result.xml"
37
- name: Upload Unit Test Results
38
+ uses: EnricoMi/publish-unit-test-result-action@v1
39
if: always()
40
with:
- files: test-results/**/*.xml
41
+ files: test_result.xml
0 commit comments