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
toxargs="$@"
if [ -e liveconfig ]; then
toxargs="--liveconfig liveconfig $@"
toxargs="--liveconfig liveconfig tests/ $@"
fi
tox $toxargs
tox -- $toxargs
ret=$?
popd
exit $ret