We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 44e04e3 commit 56a1ba3Copy full SHA for 56a1ba3
2 files changed
.github/workflows/python-app.yml
@@ -19,14 +19,21 @@ jobs:
19
20
steps:
21
- uses: actions/checkout@v4
22
- - name: Set up Python 3.10
+ - name: Set up Python 3.11
23
uses: actions/setup-python@v3
24
with:
25
- python-version: "3.10"
+ python-version: "3.11"
26
- name: Install dependencies
27
run: |
28
python -m pip install --upgrade pip
29
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
30
- name: Test with pytest
31
32
pytest -v --junitxml=pytest.xml -o junit_logging=all .
33
+ - name: Test Report
34
+ uses: dorny/test-reporter@v2
35
+ if: ${{ !cancelled() }} # run this step even if previous step failed
36
+ with:
37
+ name: Pytest Tests
38
+ path: pytest.xml
39
+ reporter: java-junit
pytest.ini
@@ -0,0 +1,2 @@
1
+[pytest]
2
+pythonpath = .
0 commit comments