summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorStephen Finucane <stephenfin@redhat.com>2021-07-16 12:14:34 +0100
committerStephen Finucane <stephenfin@redhat.com>2021-07-16 13:01:45 +0100
commitf048068216c655b6babc5740fc4b5e7efcf02ab1 (patch)
treed462bce4fbf4d5e95aa72a7172f8f64bb2f5a4e0 /tools
parentf3bdd4d4220a884e4752ce6b61c2605bfd72f2fb (diff)
downloadoslo-db-f048068216c655b6babc5740fc4b5e7efcf02ab1.tar.gz
tox: Simplify test running
We were actually running tests four times. Twice with eventlet disabled and twice with it enabled. Correct this. Change-Id: Idb3926d73ff3c11abe9c273062aca1b299b9f72e Signed-off-by: Stephen Finucane <stephenfin@redhat.com>
Diffstat (limited to 'tools')
-rwxr-xr-xtools/run-pifpaf-tests.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/run-pifpaf-tests.sh b/tools/run-pifpaf-tests.sh
index ee21c69..072975c 100755
--- a/tools/run-pifpaf-tests.sh
+++ b/tools/run-pifpaf-tests.sh
@@ -3,5 +3,5 @@ set -e
# Replace mysql:// by mysql+pymysql:// and add sqlite
export OS_TEST_DBAPI_ADMIN_CONNECTION="${OS_TEST_DBAPI_ADMIN_CONNECTION/#mysql:/mysql+pymysql:};sqlite://"
echo $OS_TEST_DBAPI_ADMIN_CONNECTION
-stestr run $*
-TEST_EVENTLET=1 stestr run $*
+TEST_EVENTLET=0 stestr run $*
+TEST_EVENTLET=1 stestr run --combine $*