File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 2
2
set -eu
3
3
4
4
SCRIPT_DIR=$( dirname ${BASH_SOURCE:- $0 } )
5
- ROOT_DIR=" $( dirname $( dirname $SCRIPT_DIR ) ) "
5
+ ROOT_DIR=" $( dirname " $( dirname $SCRIPT_DIR ) " ) "
6
6
7
7
export PIP_QUIET=1 # Quiet by default
8
8
export PIP_PREFER_BINARY=1 # Prefer binary dists by default
62
62
# files in the xunit-results/ directory.
63
63
TEST_ARGS=${TEST_ARGS}
64
64
if [ " $# " -ne 0 ]; then
65
- TEST_ARGS=“ $@ ”
65
+ TEST_ARGS=" $* "
66
66
fi
67
67
echo " Running tests with $TEST_ARGS ..."
68
68
if [ -z " ${GREEN_FRAMEWORK:- } " ]; then
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ set -eu
29
29
# PYTHON_BINARY The python binary to use in tests.
30
30
31
31
SCRIPT_DIR=$( dirname ${BASH_SOURCE:- $0 } )
32
- ROOT_DIR=" $( dirname $( dirname $SCRIPT_DIR ) ) "
32
+ ROOT_DIR=" $( dirname " $( dirname $SCRIPT_DIR ) " ) "
33
33
34
34
# Try to source the env file.
35
35
if [ -f $SCRIPT_DIR /env.sh ]; then
Original file line number Diff line number Diff line change 2
2
set -eu
3
3
4
4
SCRIPT_DIR=$( dirname ${BASH_SOURCE:- $0 } )
5
- ROOT_DIR=" $( dirname $( dirname $SCRIPT_DIR ) ) "
5
+ ROOT_DIR=" $( dirname " $( dirname $SCRIPT_DIR ) " ) "
6
6
7
7
# Remove temporary test files.
8
8
pushd $ROOT_DIR > /dev/null
You can’t perform that action at this time.
0 commit comments