Skip to content

Commit 253d913

Browse files
authored
Merge pull request #519 from eriknw/github_actions
More Github Action CI
2 parents 43bb731 + 9cf978e commit 253d913

File tree

3 files changed

+7
-64
lines changed

3 files changed

+7
-64
lines changed

.github/workflows/test.yml

Lines changed: 5 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
fail-fast: false
1313
matrix:
1414
os: ["ubuntu-latest"]
15-
python-version: [3.5, 3.6, 3.7, 3.8, 3.9, "pypy-3.6", "pypy-3.7"]
15+
python-version: [3.5, 3.6, 3.7, 3.8, 3.9, "3.10-dev", "pypy-3.6", "pypy-3.7"]
1616
steps:
1717
- name: Checkout
1818
uses: actions/checkout@v2
@@ -30,13 +30,7 @@ jobs:
3030
coverage run -m pytest --doctest-modules toolz/
3131
pytest bench/
3232
pep8 --ignore="E731,W503,E402" --exclude=conf.py,tests,examples,bench -r --show-source .
33-
34-
finish:
35-
needs: test
36-
runs-on: ubuntu-latest
37-
steps:
38-
- name: Coveralls Finished
39-
uses: coverallsapp/github-action@master
40-
with:
41-
github-token: ${{ secrets.github_token }}
42-
parallel-finished: true
33+
- name: Coverate
34+
if: (! contains(matrix.python-version, 'pypy'))
35+
run: |
36+
coverage report --show-missing --fail-under=100

.travis.yml

Lines changed: 0 additions & 51 deletions
This file was deleted.

README.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -124,8 +124,8 @@ Community
124124
See our `mailing list <https://groups.google.com/forum/#!forum/pytoolz>`__.
125125
We're friendly.
126126

127-
.. |Build Status| image:: https://travis-ci.org/pytoolz/toolz.svg?branch=master
128-
:target: https://travis-ci.org/pytoolz/toolz
127+
.. |Build Status| image:: https://github.com/pytoolz/toolz/workflows/Test/badge.svg
128+
:target: https://github.com/pytoolz/toolz/actions
129129
.. |Coverage Status| image:: https://coveralls.io/repos/pytoolz/toolz/badge.svg?branch=master
130130
:target: https://coveralls.io/r/pytoolz/toolz
131131
.. |Version Status| image:: https://badge.fury.io/py/toolz.svg

0 commit comments

Comments
 (0)