fix run-integration-test.sh to run without arguments

This commit is contained in:
holger krekel
2019-07-01 15:57:00 +02:00
parent 6ccc75b1ed
commit d1593f0258

View File

@@ -25,9 +25,9 @@ fi
pushd python pushd python
toxargs="$@" toxargs="$@"
if [ -e liveconfig ]; then if [ -e liveconfig ]; then
toxargs="--liveconfig liveconfig $@" toxargs="--liveconfig liveconfig tests/ $@"
fi fi
tox $toxargs tox -- $toxargs
ret=$? ret=$?
popd popd
exit $ret exit $ret