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.
2 parents 2d4143e + eaaa1e2 commit aec9dc2Copy full SHA for aec9dc2
1 file changed
.github/workflows/test.yml
@@ -56,10 +56,21 @@ jobs:
56
python -m pip install --upgrade tox
57
58
- name: Tox tests
59
+ if: matrix.python-version != 'pypy3'
60
shell: bash
61
run: |
62
tox -e py
63
64
+ # Temporarily test PyPy3 without tox:
65
+ # https://foss.heptapod.net/pypy/pypy/-/issues/3331
66
+ # https://github.com/tox-dev/tox/issues/1704
67
+ - name: Non-tox tests (PyPy3)
68
+ if: matrix.python-version == 'pypy3'
69
+ shell: bash
70
+ run: |
71
+ python -m pip install ".[tests]"
72
+ python -m pytest --cov humanize --cov tests --cov-report xml
73
+
74
- name: Upload coverage
75
uses: codecov/codecov-action@v1
76
with:
0 commit comments