From 4ca694c5adc35e87e3b9a6422ca4f360bf81acc5 Mon Sep 17 00:00:00 2001 From: Chris Dent Date: Thu, 16 Jun 2016 12:59:30 +0100 Subject: [PATCH] Correct concurrency of gabbi tests for gabbi 1.22.0 When running gabbi under testr, concurrency grouping is controlled by a regex in .testr.conf. A module name change in gabbi 1.22.0 inadvertently broke the grouping. This change should work for old and new versions. Change-Id: Ie52d0714a453652f0497d34fb758473755e7bc49 --- .testr.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.testr.conf b/.testr.conf index 4793e6d1..903f0ea9 100644 --- a/.testr.conf +++ b/.testr.conf @@ -2,4 +2,4 @@ test_command=${PYTHON:-python} -m subunit.run discover -t ./ ./cloudkitty/tests $LISTOPT $IDOPTION test_id_option=--load-list $IDFILE test_list_option=--list -group_regex=gabbi\.driver\.(test_[^_]+_[^_]+) +group_regex=gabbi\.(suitemaker|driver)\.(test_[^_]+_[^_]+)