Ignore version.py and upload coverage
This commit is contained in:
parent
5c8d040e51
commit
b76e1e3942
2 changed files with 12 additions and 1 deletions
8
.github/workflows/run-tests.yml
vendored
8
.github/workflows/run-tests.yml
vendored
|
@ -39,3 +39,11 @@ jobs:
|
||||||
- name: Test with pytest
|
- name: Test with pytest
|
||||||
run: |
|
run: |
|
||||||
python -m pytest
|
python -m pytest
|
||||||
|
- name: Upload coverage to Codecov.io
|
||||||
|
run: |
|
||||||
|
bash <(curl -s https://codecov.io/bash)
|
||||||
|
if: ${{ matrix.os == 'ubuntu-latest' && matrix.python-version == '3.9' }}
|
||||||
|
- uses: actions/upload-artifact@v2
|
||||||
|
with:
|
||||||
|
path: coverage.xml
|
||||||
|
if: ${{ matrix.os == 'ubuntu-latest' && matrix.python-version == '3.9' }}
|
3
.gitignore
vendored
3
.gitignore
vendored
|
@ -140,3 +140,6 @@ cython_debug/
|
||||||
|
|
||||||
# VSCode Settings
|
# VSCode Settings
|
||||||
.vscode/
|
.vscode/
|
||||||
|
|
||||||
|
# setuptools_scm auto-generated version file
|
||||||
|
src/pyebur128/version.py
|
Loading…
Reference in a new issue