From c2470a21de72969812642ed4acf1c7c49b45dd6e Mon Sep 17 00:00:00 2001 From: Stephen Finucane Date: Thu, 3 Oct 2024 11:33:45 +0100 Subject: [PATCH] tox: Fix functional tests Without this comma, tox runs the standard testenv instead of this one. This is due to how tox calculates factors (parts of a testenv name) and checks for their existence [1]. [1] https://github.com/tox-dev/tox/issues/3219 Change-Id: I3fc33a26b0d7f057d7bd6a094fc2ceeaa88f177b Signed-off-by: Stephen Finucane --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 86a1e794f..ca14f55af 100644 --- a/tox.ini +++ b/tox.ini @@ -23,7 +23,7 @@ commands = stestr run {posargs} stestr slowest -[testenv:functional{-py39,-py310,-py311,-py312}] +[testenv:functional{,-py39,-py310,-py311,-py312}] description = Run functional tests. # Some jobs (especially heat) takes longer, therefore increase default timeout