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.
2 parents 92737bd + 55f94ce commit a6f615eCopy full SHA for a6f615e
tests/test_allvirtualenv.sh
@@ -30,4 +30,8 @@ test_allvirtualenv_all() {
30
assertTrue "Did not find test2" "allvirtualenv pwd | grep -q 'test2$'"
31
}
32
33
+test_allvirtualenv_spaces() {
34
+ assertTrue "Command did not output The Zen of Python" "allvirtualenv python -c 'import this' | grep -q 'The Zen of Python'"
35
+}
36
+
37
. "$test_dir/shunit2"
virtualenvwrapper.sh
@@ -1169,7 +1169,7 @@ function allvirtualenv {
1169
# because we don't want to trigger any hooks.
1170
(source "$WORKON_HOME/$d/bin/activate";
1171
cd "$VIRTUAL_ENV";
1172
- $@)
+ "$@")
1173
echo
1174
done
1175
0 commit comments