From fbb3533295cfcefc6574fb2186d4e8f4e2a20dd3 Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Thu, 21 Oct 2021 08:46:15 -0400 Subject: fix: changes for PyPy3.8 - Update tox.ini to let us run against PyPy3.8 - Some 3.8 behavior is (apparently) only on CPython - PyPy3.8 doesn't get along with virtualenv yet (https://github.com/pypa/virtualenv/issues/2182), so use venv instead for our virtualenv tests. --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tox.ini') diff --git a/tox.ini b/tox.ini index 602d7e4b..cc8b3d8b 100644 --- a/tox.ini +++ b/tox.ini @@ -26,7 +26,7 @@ install_command = python -m pip install -U {opts} {packages} passenv = * setenv = - pypy,pypy3: COVERAGE_NO_CTRACER=no C extension under PyPy + pypy{3,37,38}: COVERAGE_NO_CTRACER=no C extension under PyPy jython: COVERAGE_NO_CTRACER=no C extension under Jython jython: PYTEST_ADDOPTS=-n 0 # For some tests, we need .pyc files written in the current directory, -- cgit v1.2.1