From 088577e8e58e84c3a14075cb0ecf349a38abb7e3 Mon Sep 17 00:00:00 2001 From: Lukas Holecek Date: Mar 25 2021 08:02:31 +0000 Subject: Update tox Use same minor version of Python 3.9 as container. Allow passing arguments to pytest, for example: tox -e py39 -- -k test_cache_passing_results --- diff --git a/tox.ini b/tox.ini index d5df571..ce01cf5 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = lint,py36,docs +envlist = lint,py39,docs # If the user is missing an interpreter, don't fail skip_missing_interpreters = True @@ -15,7 +15,7 @@ commands = rm -rf htmlcov coverage.xml py.test greenwave/tests/ \ --cov-config .coveragerc --cov=greenwave --cov-report term \ - --cov-report xml --cov-report html + --cov-report xml --cov-report html {posargs} [testenv:docs] changedir = docs