From 38a91f06212eb81182d41df1d565ccd7e5b0f681 Mon Sep 17 00:00:00 2001 From: Witek Bedyk Date: Tue, 26 Nov 2019 10:00:53 +0100 Subject: [PATCH] Enable running unit tests in py37 environment Until now no unit tests have been executed in py37 environment. This change fixes tox configuration to enable running these tests. Change-Id: I63bc0309fe6b4b314be97d8fc1bd051d2119ea84 --- tox.ini | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/tox.ini b/tox.ini index 1ffea0b7..bf6df93e 100644 --- a/tox.ini +++ b/tox.ini @@ -29,6 +29,12 @@ commands = {[testenv]commands} stestr run {posargs} +[testenv:py37] +basepython = python3.7 +commands = + {[testenv]commands} + stestr run {posargs} + [testenv:cover] commands = {[testenv]commands}