Skip to content

Commit

Permalink
CI: disable pypy3
Browse files Browse the repository at this point in the history
  • Loading branch information
Gallaecio committed Feb 14, 2024
1 parent 464deaf commit 5a196e0
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 10 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,11 @@ jobs:
- python-version: 3.8
env:
TOXENV: py38-extra-deps
- python-version: pypy3
env:
TOXENV: pypy3
PYPY_VERSION: '3.7-v7.3.5'
# See tox.ini for details
# - python-version: pypy3
# env:
# TOXENV: pypy3
# PYPY_VERSION: '3.7-v7.3.5'

steps:
- uses: actions/checkout@v2
Expand Down
14 changes: 8 additions & 6 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# and then run "tox" from this directory.

[tox]
envlist = py27-pinned,py27,py27-extra-deps,pypy2,py35-pinned,py35,py36,py37,py38,py38-extra-deps,pypy3
envlist = py27-pinned,py27,py27-extra-deps,pypy2,py35-pinned,py35,py36,py37,py38,py38-extra-deps
# https://tox.wiki/en/4.11.3/faq.html#testing-end-of-life-python-versions
requires = virtualenv<20.22.0

Expand Down Expand Up @@ -115,11 +115,13 @@ deps = {[testenv:py35]deps}
basepython = python3.8
deps = {[testenv:py35]deps}

[testenv:pypy3]
basepython = pypy3
deps = {[testenv:py35]deps}
commands =
py.test {posargs:scrapy tests}
; Will not work due to “requires = virtualenv<20.22.0” above, which is required
; for py2.7 to work.
; [testenv:pypy3]
; basepython = pypy3
; deps = {[testenv:py35]deps}
; commands =
; py.test {posargs:scrapy tests}

[docs]
changedir = docs
Expand Down

0 comments on commit 5a196e0

Please sign in to comment.