mirror of
https://github.com/pypa/pip
synced 2023-12-13 21:30:23 +01:00
Test the collection of tests
This is to workaround pytest issues #149 / #180 where distributed testing doesn't error out if it fails to collect tests.
This commit is contained in:
parent
ed31b98c59
commit
8df86cac0b
2 changed files with 6 additions and 1 deletions
|
@ -1,6 +1,7 @@
|
|||
language: python
|
||||
|
||||
env:
|
||||
- TOXENV=collect
|
||||
- TOXENV=py26
|
||||
- TOXENV=py27
|
||||
- TOXENV=py32
|
||||
|
|
6
tox.ini
6
tox.ini
|
@ -1,6 +1,6 @@
|
|||
[tox]
|
||||
envlist =
|
||||
py26,py27,py32,py33,pypy
|
||||
collect,py26,py27,py32,py33,pypy
|
||||
|
||||
[testenv]
|
||||
deps =
|
||||
|
@ -12,6 +12,10 @@ deps =
|
|||
commands =
|
||||
py.test -n 8
|
||||
|
||||
[testenv:collect]
|
||||
commands =
|
||||
py.test --collectonly
|
||||
|
||||
[testenv:py32]
|
||||
commands =
|
||||
py.test
|
||||
|
|
Loading…
Reference in a new issue