Skip to content

Commit

Permalink
run docs and package_description on py38
Browse files Browse the repository at this point in the history
  • Loading branch information
luizirber committed Dec 9, 2020
1 parent 8f1388b commit d8cd27d
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 4 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,15 @@ jobs:
env:
PYTHONDEVMODE: 1

- name: set coverage location
id: covloc
run: |
PYNAME=$(echo ${{ matrix.py }} | tr -d .)
echo "::set-output name=coverage_file::.tox/junit.py${PYNAME}.xml"
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v1
with:
fail_ci_if_error: true
file: ${{ steps.covloc.outputs.coverage_file }}
flags: python
2 changes: 1 addition & 1 deletion .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ jobs:
- name: Upload Rust coverage to codecov
uses: codecov/codecov-action@v1
with:
flags: rusttests
flags: rust
fail_ci_if_error: true

lints:
Expand Down
7 changes: 4 additions & 3 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
envlist =
py39,
coverage,
codecov,
docs,
package_description
py38,
Expand Down Expand Up @@ -152,9 +153,9 @@ source = src/sourmash/
[gh-actions]
python =
3.7: py37, docs, package_description, coverage, codecov
3.8: py38, coverage, codecov
3.9: py39, coverage, codecov, fix_lint
3.7: py37, coverage, codecov
3.8: py38, docs, package_description, fix_lint, coverage, codecov
3.9: py39, coverage, codecov
[flake8]
max-complexity = 22
Expand Down

0 comments on commit d8cd27d

Please sign in to comment.