Skip to content

Commit

Permalink
Comment out PyPy tests. (#70)
Browse files Browse the repository at this point in the history
See issue #69.
  • Loading branch information
YPCrumble authored Mar 24, 2022
1 parent cf93c5c commit 70a5107
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 8 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,10 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.7, 3.8, 3.9, "3.10", "pypy-3.8"]
# PyPy disabled per issue #69:
# https://github.com/peterbe/django-fancy-cache/issues/69
# python-version: [3.7, 3.8, 3.9, "3.10", "pypy-3.8"]
python-version: [3.7, 3.8, 3.9, "3.10"]

steps:
- name: apt update
Expand Down
16 changes: 9 additions & 7 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -13,27 +13,29 @@ envlist = py37-dj22,
py310-dj32,
py38-dj40,
py39-dj40,
py310-dj40,
pypy-3-dj22,
pypy-3-dj31,
pypy-3-dj32,
pypy-3-dj40
py310-dj40
# PyPy disabled per issue #69:
# https://github.com/peterbe/django-fancy-cache/issues/69
# pypy-3-dj22,
# pypy-3-dj31,
# pypy-3-dj32,
# pypy-3-dj40

[gh-actions]
python =
3.7: py37
3.8: py38
3.9: py39
3.10: py310
pypy-3.8: pypy-3
# pypy-3.8: pypy-3

[testenv]
basepython =
py37: python3.7
py38: python3.8
py39: python3.9
py310: python3.10
pypy-3: pypy3
# pypy-3: pypy3

deps =
dj22: Django>=2.2.0, <3.0.0
Expand Down

0 comments on commit 70a5107

Please sign in to comment.