We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e8c345f commit df2f2a6Copy full SHA for df2f2a6
1 file changed
scripts/github/install-virtualenv.sh
@@ -7,7 +7,7 @@ set -e
7
# TODO: simplify this once fixed in contrib/runners/python_runner/tests/integration/test_pythonrunner_behavior.py
8
if [[ ! -f ~/virtualenv/bin/virtualenv ]]; then # use the cached version whenever possible
9
pip install --user --upgrade --force-reinstall "$(grep "^virtualenv" fixed-requirements.txt)"
10
- virtualenv --no-download ~/virtualenv
+ python3 -m venv ~/virtualenv
11
~/virtualenv/bin/pip install --upgrade --force-reinstall "$(grep "^virtualenv" fixed-requirements.txt)"
12
# drop the --user install virtualenv to prevent polluting tests
13
pip freeze --user | xargs pip uninstall -y
0 commit comments