summaryrefslogtreecommitdiff
path: root/tests/test_process.py
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2021-10-21 08:46:15 -0400
committerNed Batchelder <ned@nedbatchelder.com>2021-10-25 19:01:10 -0400
commitfbb3533295cfcefc6574fb2186d4e8f4e2a20dd3 (patch)
tree0f95bb46f17a95afc685b785f58c763ea3f2a13f /tests/test_process.py
parent7de7a340afad244b010f8d4ca81868e65f9f156f (diff)
downloadpython-coveragepy-git-fbb3533295cfcefc6574fb2186d4e8f4e2a20dd3.tar.gz
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.
Diffstat (limited to 'tests/test_process.py')
-rw-r--r--tests/test_process.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_process.py b/tests/test_process.py
index bf16a2b2..10312232 100644
--- a/tests/test_process.py
+++ b/tests/test_process.py
@@ -1691,7 +1691,7 @@ def venv_world_fixture(tmp_path_factory):
venv_world = tmp_path_factory.mktemp("venv_world")
with change_dir(venv_world):
# Create a virtualenv.
- run_command("python -m virtualenv venv")
+ run_command("python -m venv venv")
# A third-party package that installs a few different packages.
make_file("third_pkg/third/__init__.py", """\