We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3109612 commit 2ebc6d3Copy full SHA for 2ebc6d3
1 file changed
.github/workflows/ci.yml
@@ -46,24 +46,16 @@ jobs:
46
- name: Check installation
47
run: |
48
source env/bin/activate
49
- src/app -h
+ template-python
50
51
# Run tests
52
- name: Run tests
53
54
55
- pytest --doctest-modules --junitxml=junit/test-results.xml
+ pytest .
56
env:
57
CI: true
58
59
- # Upload test results
60
- - name: Upload test results
61
- if: always()
62
- uses: actions/upload-artifact@v3
63
- with:
64
- name: test-results
65
- path: junit/test-results.xml
66
-
67
# Code formatting check with black
68
- name: Code formatting with black
69
0 commit comments