mirror of
https://github.com/certbot/certbot.git
synced 2026-06-11 09:40:41 -04:00
Limiting tox envlist to really needed tests
This commit is contained in:
parent
686e60b4bf
commit
4a8f71277c
2 changed files with 4 additions and 1 deletions
|
|
@ -71,6 +71,9 @@ The following tools are there to help you:
|
|||
experimental, non-production Apache2 install on them. ``tox -e
|
||||
apacheconftest`` can be used to run those specific Apache conf tests.
|
||||
|
||||
- ``tox --skip-missing-interpreters`` runs tox while ignoring missing versions
|
||||
of Python needed for running the tests.
|
||||
|
||||
- ``tox -e py27``, ``tox -e py26`` etc, run unit tests for specific Python
|
||||
versions.
|
||||
|
||||
|
|
|
|||
2
tox.ini
2
tox.ini
|
|
@ -4,7 +4,7 @@
|
|||
|
||||
[tox]
|
||||
skipsdist = true
|
||||
envlist = py{26,27,33,34,35},py{26,27}-oldest,cover,lint
|
||||
envlist = py{26,33,34,35},cover,lint
|
||||
|
||||
# nosetest -v => more verbose output, allows to detect busy waiting
|
||||
# loops, especially on Travis
|
||||
|
|
|
|||
Loading…
Reference in a new issue