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 bcccf80 commit 615b73cCopy full SHA for 615b73c
.github/workflows/run-tests.yml
@@ -118,3 +118,24 @@ jobs:
118
env:
119
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
120
run: coveralls --service=github
121
+ run-codecov:
122
+ runs-on: [ubuntu-latest]
123
+ steps:
124
+ - uses: actions/checkout@v2
125
+ - name: Setup Python 3.10
126
+ uses: actions/setup-python@v2
127
+ with:
128
+ python-version: "3.10"
129
+ - name: Install dependencies
130
+ run: |
131
+ python setup.py install
132
+ pip install -r requirements-test.txt
133
+ pip install pytest pytest-cov
134
+ - name: Create coverage
135
136
+ pytest --cov=./ --cov-report=xml
137
+ - uses: codecov/codecov-action@v1
138
139
+ name: Submit Codecov coverage
140
+ files: ./coverage.xml
141
+ verbose: true # optional (default = false)
0 commit comments