We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5b6033a commit 0db6911Copy full SHA for 0db6911
1 file changed
tests/run_tests
@@ -44,16 +44,17 @@ unset VIRTUALENVWRAPPER_VIRTUALENV_ARGS
44
45
# Run the test scripts with a little formatting around them to make it
46
# easier to find where each script output starts.
47
-for test_shell in bash ksh zsh
+for test_script in $scripts
48
do
49
- test_shell_opts=
50
- if [ $test_shell = "zsh" ]; then
51
- test_shell_opts="-o shwordsplit"
52
- fi
53
- test_shell=$(which $test_shell)
54
55
- for test_script in $scripts
+ for test_shell in bash ksh zsh
56
+ test_shell_opts=
+ if [ $test_shell = "zsh" ]; then
+ test_shell_opts="-o shwordsplit"
+ fi
+ export test_shell=$(which $test_shell)
57
+
58
echo
59
echo '********************************************************************************'
60
echo "Running $test_script"
0 commit comments