Browse Source

travis now test with python3

main
Julien Iguchi-Cartigny 10 years ago
parent
commit
3e920e86a4
2 changed files with 9 additions and 2 deletions
  1. +2
    -0
      .travis.yml
  2. +7
    -2
      tox.ini

+ 2
- 0
.travis.yml View File

@@ -2,6 +2,8 @@ language: python
env: env:
- TOX_ENV=py26 - TOX_ENV=py26
- TOX_ENV=py27 - TOX_ENV=py27
- TOX_ENV=py33
- TOX_ENV=py34
- TOX_ENV=docs - TOX_ENV=docs
- TOX_ENV=flake8 - TOX_ENV=flake8
install: install:


+ 7
- 2
tox.ini View File

@@ -1,6 +1,6 @@
[tox] [tox]
minversion = 1.3 minversion = 1.3
envlist = py26,py27,docs,flake8
envlist = py26,py27,py33,py34,docs,flake8


[testenv] [testenv]
deps= deps=
@@ -8,7 +8,7 @@ deps=
coveralls coveralls
coverage coverage
commands= commands=
nosetests --with-coverage --cover-package=wstools --verbosity=5
nosetests --with-coverage --cover-package=wstools
bash -c "coveralls || true" bash -c "coveralls || true"
whitelist_externals=bash whitelist_externals=bash


@@ -16,6 +16,11 @@ whitelist_externals=bash


[testenv:py27] [testenv:py27]


[testenv:py33]

[testenv:py34]


[testenv:docs] [testenv:docs]
downloadcache={toxworkdir}/downloadcache downloadcache={toxworkdir}/downloadcache
basepython=python2.7 basepython=python2.7


Loading…
Cancel
Save