From b27765917c130c042ea162e929463548a8a90524 Mon Sep 17 00:00:00 2001 From: Erick Daniszewski Date: Wed, 26 Aug 2020 14:38:23 -0400 Subject: [PATCH] test: run tests in verbose mode, fix fmt and deps envs to specify a basepython --- tox.ini | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index e3e1d7f6..90fd8265 100644 --- a/tox.ini +++ b/tox.ini @@ -17,7 +17,7 @@ deps = pip-tools commands = pip-sync {toxinidir}/requirements.txt {toxinidir}/requirements-test.txt - pytest -s \ + pytest -s -vv \ --disable-warnings \ --cov-report html \ --cov-report term \ @@ -26,6 +26,7 @@ commands = [testenv:deps] +basepython=python3 deps = pip-tools commands = @@ -34,6 +35,7 @@ commands = [testenv:fmt] +basepython=python3 deps = isort>=5.0.0 autopep8