From: Shivani Bhardwaj Date: Wed, 3 Oct 2018 17:32:58 +0000 (+0530) Subject: Add Python 3.7 to tox configurations X-Git-Tag: 1.0.0rc2~3 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d90d60e9fc640da5fe206546252c52f781954bbd;p=thirdparty%2Fsuricata-update.git Add Python 3.7 to tox configurations Current tox configuration was missing Python 3.7 because of which tests were never run for a Python 3.7 environment. Fix that by adding py37 to the configurations. --- diff --git a/tox-integration.ini b/tox-integration.ini index 238766d..89ea8fd 100644 --- a/tox-integration.ini +++ b/tox-integration.ini @@ -4,7 +4,7 @@ # and then run "tox" from this directory. [tox] -envlist = py27, py34, py35, py36 +envlist = py27, py34, py35, py36, py37 [testenv] commands = python ./tests/integration_tests.py diff --git a/tox.ini b/tox.ini index 33dc40a..c5c656a 100644 --- a/tox.ini +++ b/tox.ini @@ -4,7 +4,7 @@ # and then run "tox" from this directory. [tox] -envlist = py27, py34, py35, py36 +envlist = py27, py34, py35, py36, py37 [testenv] commands = pytest