Setting of exact python versions for tox environments, remove travis python environments

This commit is contained in:
Roman Mogilatov 2015-03-18 19:05:31 +02:00
parent b93bb61e28
commit 0726a7c253
2 changed files with 3 additions and 4 deletions

View File

@ -1,7 +1,4 @@
language: python language: python
python:
- '2.6'
- '2.7'
install: install:
- pip install tox - pip install tox
script: script:

View File

@ -7,7 +7,7 @@ deps=
unittest2 unittest2
[testenv:dev] [testenv:dev]
basepython=python basepython=python2.7
deps= deps=
{[testenv]deps} {[testenv]deps}
coverage coverage
@ -49,9 +49,11 @@ commands=
pep257 objects pep257 objects
[testenv:py26] [testenv:py26]
basepython=python2.6
commands= commands=
unit2 discover tests [] unit2 discover tests []
[testenv:py27] [testenv:py27]
basepython=python2.7
commands= commands=
unit2 discover tests [] unit2 discover tests []