Skip to content

Commit 3d2ee49

Browse files
committed
Enable debug
1 parent b909869 commit 3d2ee49

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scripts/github/install-virtualenv.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/usr/bin/env bash
2-
set -e
2+
set -e -x
33

44
# Note: Use the verison of virtualenv pinned in fixed-requirements.txt so we
55
# only have to update it one place when we change the version
@@ -10,7 +10,7 @@ if [[ ! -f ~/virtualenv/bin/virtualenv ]]; then # use the cached version whenev
1010
python3 -m venv ~/virtualenv
1111
# ~/virtualenv/bin/pip install --upgrade --force-reinstall "$(grep "^virtualenv" fixed-requirements.txt)"
1212
# drop the --user install virtualenv to prevent polluting tests
13-
pip freeze --user | xargs pip uninstall -y
13+
# pip freeze --user | xargs pip uninstall -y
1414
fi
1515

1616
mkdir -p ~/.local/bin

0 commit comments

Comments
 (0)