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 5e313b6 commit b8ee8a6Copy full SHA for b8ee8a6
1 file changed
.github/workflows/pythonpublish.yml
@@ -25,9 +25,14 @@ jobs:
25
python -m pip install --upgrade pip
26
pip install -r requirements.txt
27
pip install -r dev_requirements.txt
28
- pip install .
+ pip install -e .
29
- name: Test with pytest
30
- run: pytest
+ run: pytest tests --cov=dython --cov-branch --cov-report=xml
31
+ - name: Upload coverage artifact
32
+ uses: actions/upload-artifact@v4
33
+ with:
34
+ name: coverage-report
35
+ path: coverage.xml
36
37
deploy:
38
needs: test
@@ -54,6 +59,11 @@ jobs:
54
59
# needs: deploy
55
60
# runs-on: ubuntu-latest
56
61
# steps:
62
+ # - uses: actions/checkout@v4
63
+ # - name: Download coverage artifact
64
+ # uses: actions/download-artifact@v4
65
+ # with:
66
+ # name: coverage-report
57
67
# - name: Upload coverage reports to Codecov
58
68
# uses: codecov/codecov-action@v5
69
# with:
0 commit comments