Skip to content

Commit

Permalink
re-add pypy3 tests, fix coveralls upload
Browse files Browse the repository at this point in the history
  • Loading branch information
casperdcl committed Dec 19, 2020
1 parent 302bb72 commit 08b326f
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 5 deletions.
2 changes: 2 additions & 0 deletions .coveragerc
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
[run]
branch = True
include = argopt/*
omit =
argopt/tests/*
argopt/_docopt.py
relative_files = True
[report]
show_missing = True
16 changes: 11 additions & 5 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
if: github.event_name != 'pull_request' || github.head_ref != 'devel'
strategy:
matrix:
python: [2.7, 3.5, 3.6, 3.7, 3.8, 3.9]
python: [2.7, 3.5, 3.6, 3.7, 3.8, 3.9, pypy3]
name: Python ${{ matrix.python }}
runs-on: ubuntu-latest
steps:
Expand All @@ -58,7 +58,12 @@ jobs:
- name: Install
run: pip install -U tox
- name: Test
run: tox -e py${PYVER/./}
run: |
if [[ "$PYVER" == py* ]]; then
tox -e $PYVER # basic:pypy
else
tox -e py${PYVER/./} # normal
fi
env:
PYVER: ${{ matrix.python }}
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
Expand All @@ -69,6 +74,7 @@ jobs:
finish:
if: github.event_name != 'pull_request' || github.head_ref != 'devel'
name: Coverage
continue-on-error: ${{ github.event_name != 'push' }}
needs: test
runs-on: ubuntu-latest
steps:
Expand Down Expand Up @@ -104,7 +110,7 @@ jobs:
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: argopt ${{ github.ref }} stable
Expand All @@ -113,7 +119,7 @@ jobs:
- if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags')
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ${{ steps.collect_assets.outputs.asset_path }}
Expand All @@ -122,7 +128,7 @@ jobs:
- if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags')
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ${{ steps.collect_assets.outputs.asset_path_sig }}
Expand Down
2 changes: 2 additions & 0 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ deps =
coveralls
commands =
nosetests --with-coverage --cover-package=argopt -d -v argopt/
coverage xml
- coveralls

[extra]
Expand All @@ -30,6 +31,7 @@ deps =
codecov
commands =
nosetests --with-coverage --with-timer --cover-package=argopt -d -v argopt/
coverage xml
- coveralls
codecov

Expand Down

0 comments on commit 08b326f

Please sign in to comment.