From d5e5be5c8e640d7d2f113c959a226bbad32e42ea Mon Sep 17 00:00:00 2001 From: Jacob Pavlock Date: Tue, 7 Jul 2020 15:05:40 -0700 Subject: [PATCH] simplify `tox.ini` --- tox.ini | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/tox.ini b/tox.ini index cb673b872..e3476db1c 100644 --- a/tox.ini +++ b/tox.ini @@ -17,10 +17,8 @@ files = beets beetsplug beet test setup.py docs deps = {test,cov}: {[_test]deps} lint: {[_lint]deps} - py27: pathlib commands = - py27-test: python -m pytest {posargs} - py3{4,5,6,7,8}-test: python -bb -m pytest {posargs} + test: python -bb -m pytest {posargs} cov: coverage run -m pytest {posargs} lint: python -m flake8 {posargs} {[_lint]files} @@ -30,7 +28,6 @@ deps = sphinx commands = sphinx-build -W -q -b html docs {envtmpdir}/html {posargs} [testenv:int] -basepython = python3.8 deps = {[_test]deps} setenv = INTEGRATION_TEST = 1 -commands = python -m pytest {posargs} \ No newline at end of file +commands = python -bb -m pytest {posargs} \ No newline at end of file