From f048068216c655b6babc5740fc4b5e7efcf02ab1 Mon Sep 17 00:00:00 2001 From: Stephen Finucane Date: Fri, 16 Jul 2021 12:14:34 +0100 Subject: 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 --- tools/run-pifpaf-tests.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tools') 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 $* -- cgit v1.2.1