From d1593f0258414708cce73412ddd3c1eac1ccd2aa Mon Sep 17 00:00:00 2001 From: holger krekel Date: Mon, 1 Jul 2019 15:57:00 +0200 Subject: [PATCH] fix run-integration-test.sh to run without arguments --- run-integration-tests.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/run-integration-tests.sh b/run-integration-tests.sh index 579a7b662..12633addc 100755 --- a/run-integration-tests.sh +++ b/run-integration-tests.sh @@ -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