Skip to content

Commit

Permalink
re-enabled pypy3 for tests
Browse files Browse the repository at this point in the history
  • Loading branch information
maxfischer2781 committed Mar 23, 2021
1 parent 7e26ed1 commit 78b77d3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/unittests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.6', '3.7', '3.8', '3.9']
python-version: ['3.6', '3.7', '3.8', '3.9', 'pypy3']

steps:
- uses: actions/checkout@v2
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,8 @@
extras_require={
"docs": ["sphinx", "sphinx_rtd_theme", "sphinxcontrib-contentui"],
"test": TESTS_REQUIRE,
"contrib": ["flake8", "flake8-bugbear", "black"] + TESTS_REQUIRE,
"contrib": ["flake8", "flake8-bugbear", "black; implementation_name=='cpython'"]
+ TESTS_REQUIRE,
},
tests_require=TESTS_REQUIRE,
zip_safe=False,
Expand Down

0 comments on commit 78b77d3

Please sign in to comment.