Skip to content

Commit 18f5a38

Browse files
committed
Try to fix usage of USE_TPCDS variable in test script
1 parent 302350c commit 18f5a38

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

run_tests.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ python3 -m venv /tmp/env && source /tmp/env/bin/activate &&
147147
pip install -r tests/requirements.txt
148148
set -e #exit virtualenv with error code
149149
python tests/pg_qs_test_runner.py --port $PGPORT
150-
if [[ -n $USE_TPCDS ]]; then
150+
if [[ "$USE_TPCDS" == "1" ]]; then
151151
python tests/pg_qs_test_runner.py --port $PGPORT --tpc-ds
152152
fi
153153
deactivate

0 commit comments

Comments
 (0)