diff options
| author | Bernát Gábor <bgabor8@bloomberg.net> | 2020-04-29 19:15:37 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-04-29 19:15:37 +0100 |
| commit | 18de796ec5bd032aa27cfe6e5efb68ccfff54a31 (patch) | |
| tree | aeb26a22cfc1c9304fe78a26f081b51a31d3a1db /tests | |
| parent | 43e4b1e06f55af55b213fc4a23b19aca84afb01a (diff) | |
| download | virtualenv-18de796ec5bd032aa27cfe6e5efb68ccfff54a31.tar.gz | |
Bump pip to 20.1 (#1795)
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/integration/test_zipapp.py | 10 | ||||
| -rw-r--r-- | tests/unit/create/console_app/setup.cfg | 1 |
2 files changed, 9 insertions, 2 deletions
diff --git a/tests/integration/test_zipapp.py b/tests/integration/test_zipapp.py index 191fd5a..71a85ec 100644 --- a/tests/integration/test_zipapp.py +++ b/tests/integration/test_zipapp.py @@ -29,7 +29,15 @@ def zipapp_build_env(tmp_path_factory): try: # create a virtual environment which is also guaranteed to contain a recent enough pip (bundled) session = cli_run( - ["-vvv", "-p", "{}3.{}".format(impl, version), "--activators", "", str(create_env_path)] + [ + "-vvv", + "-p", + "{}3.{}".format(impl, version), + "--activators", + "", + str(create_env_path), + "--no-download", + ] ) exe = str(session.creator.exe) found = True diff --git a/tests/unit/create/console_app/setup.cfg b/tests/unit/create/console_app/setup.cfg index abf82e0..eda12f2 100644 --- a/tests/unit/create/console_app/setup.cfg +++ b/tests/unit/create/console_app/setup.cfg @@ -5,7 +5,6 @@ description = magic package [options] packages = find: -install_requires = [options.entry_points] console_scripts = |
