File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 11#! /usr/bin/env bash
22
33RUN=$( dirname " $0 " ) /test/run/
4- VERSIONS= " 3.0.8:3.1.0"
4+ versions= " ${VERSIONS :- 3.0.8: 3.1.0} "
55
66# Export DIST_HOST=localhost if local web server hosts server packages
77if [ -z $1 ]
88then
99 # Full test (with coverage)
10- neotest -e ${VERSIONS } ${RUN} coverage run --source neo4j -m unittest discover -vs test && coverage report --show-missing
10+ neotest -e ${versions } ${RUN} coverage run --source neo4j -m unittest discover -vs test && coverage report --show-missing
1111else
1212 # Partial test
13- neotest -e ${VERSIONS } ${RUN} coverage run --source neo4j -m unittest -v $1 && coverage report --show-missing
13+ neotest -e ${versions } ${RUN} coverage run --source neo4j -m unittest -v $1 && coverage report --show-missing
1414fi
You can’t perform that action at this time.
0 commit comments