File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -27,18 +27,18 @@ default)
2727 * )
2828 export REQUIREMENTS=' requirements.txt' ;;
2929 esac
30- export TESTS=' tests' ;;
30+ export TESTS=( ' tests' ) ;;
3131cassandra)
3232 export REQUIREMENTS=' requirements-cassandra.txt'
33- export TESTS=' tests/clients/test_cassandra-driver.py'
33+ export TESTS=( ' tests/clients/test_cassandra-driver.py' )
3434 export CASSANDRA_TEST=' true' ;;
3535couchbase)
3636 export REQUIREMENTS=' requirements-couchbase.txt'
37- export TESTS=' tests/clients/test_couchbase.py'
37+ export TESTS=( ' tests/clients/test_couchbase.py' )
3838 export COUCHBASE_TEST=' true' ;;
3939gevent_starlette)
4040 export REQUIREMENTS=' requirements-gevent-starlette.txt'
41- export TESTS=' tests/frameworks/test_gevent.py tests/frameworks/test_starlette.py'
41+ export TESTS=( ' tests/frameworks/test_gevent.py' ' tests/frameworks/test_starlette.py' )
4242 export GEVENT_STARLETTE_TEST=' true' ;;
4343* )
4444 echo " ERROR \$ TEST_CONFIGURATION='${TEST_CONFIGURATION} ' is unsupported " \
@@ -73,4 +73,4 @@ coverage run \
7373 --data-file=" .coverage-${PYTHON_VERSION} -${TEST_CONFIGURATION} " \
7474 --module \
7575 pytest \
76- --verbose --junitxml=test-results " ${TESTS} " # pytest options (not coverage options anymore)
76+ --verbose --junitxml=test-results " ${TESTS[@] } " # pytest options (not coverage options anymore)
You can’t perform that action at this time.
0 commit comments