From 00dece4dc2857973f2d7cf03ebd599519b53c843 Mon Sep 17 00:00:00 2001 From: Adrian Sampson Date: Mon, 6 Jun 2016 11:22:53 -0700 Subject: [PATCH] Shorter default envlist for tox (#2035) Now just typing `tox` or `detox` runs some sensible defaults. (This excludes Python 3 and coverage.) You can request other environments explicitly with `-e`. --- tox.ini | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 13ac09f5e..afca278d7 100644 --- a/tox.ini +++ b/tox.ini @@ -4,7 +4,10 @@ # and then run "tox" from this directory. [tox] -envlist = py{27,33,34,35}-{test,cov}, py{27,33}-flake8, docs +envlist = py27-test, py27-flake8, docs + +# The exhaustive list of environments is: +# envlist = py{27,33,34,35}-{test,cov}, py{27,33}-flake8, docs [_test] deps =