Skip to content

Commit

Permalink
Remove py27 environment from tox.ini
Browse files Browse the repository at this point in the history
By default when we run tests with tox without specifying an environment
with the `-e` argument we run tests in both both `py27` and `coverage`
which seem to end up in two identical runs.

Thus I don't see why we should have both in the list especially since we
can manually invoke any specific environment via `-e`. The default
should be a single run. Having it in a different way makes people assume
both runs are needed.
  • Loading branch information
LefterisJP committed Jul 14, 2017
1 parent 4b55b78 commit 7be552f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tox.ini
@@ -1,5 +1,5 @@
[tox]
envlist = py27,coverage
envlist = coverage

[pytest]
timeout = 540
Expand Down

0 comments on commit 7be552f

Please sign in to comment.