diff options
| author | Michael Merickel <michael@merickel.org> | 2014-11-21 18:54:20 -0600 |
|---|---|---|
| committer | Michael Merickel <michael@merickel.org> | 2014-11-21 18:54:20 -0600 |
| commit | cf4ad5eaea4af3da3bbac4c421fe5f959ed1d256 (patch) | |
| tree | 3d3ffc3f694e2ca430a1b56fa58bfb00c0a1e07b /.travis.yml | |
| parent | f6b30ee045fdf5c63daff1168a47016b8aded919 (diff) | |
| download | pyramid-cf4ad5eaea4af3da3bbac4c421fe5f959ed1d256.tar.gz pyramid-cf4ad5eaea4af3da3bbac4c421fe5f959ed1d256.tar.bz2 pyramid-cf4ad5eaea4af3da3bbac4c421fe5f959ed1d256.zip | |
update tox/travis to check code coverage on py3
coverage is combined between py2 and py3 for an aggregate coverage
metric. This means we can stop putting "no cover" gates around py3 code
and ignoring whether it's ever tested.
Diffstat (limited to '.travis.yml')
| -rw-r--r-- | .travis.yml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index 5a205b268..482d2a910 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,6 +2,7 @@ language: python env: + - TOXENV=clean - TOXENV=py26 - TOXENV=py27 - TOXENV=py32 @@ -9,7 +10,7 @@ env: - TOXENV=py34 - TOXENV=pypy - TOXENV=pypy3 - - TOXENV=cover + - TOXENV=report install: - travis_retry pip install tox |
