|
@@ -1,13 +1,15 @@
|
|
|
-# Configuration for Travis CI
|
|
|
-# !!! When making changes, make sure to also edit tox.ini !!!
|
|
|
-
|
|
|
language: python
|
|
|
-python:
|
|
|
- - "2.6"
|
|
|
- - "2.7"
|
|
|
-# command to install dependencies
|
|
|
+env:
|
|
|
+ - TOXENV=py26
|
|
|
+ - TOXENV=py27
|
|
|
+ - TOXENV=cover
|
|
|
+ # - TOXENV=pypy
|
|
|
+ # - TOXENV=py32
|
|
|
+ # - TOXENV=py33
|
|
|
+ # - TOXENV=py34
|
|
|
install:
|
|
|
- - pip install -r test_requirements.txt --use-mirrors
|
|
|
-# command to run tests
|
|
|
+ - travis_retry pip install tox==1.6.1
|
|
|
script:
|
|
|
- - python setup.py test -q
|
|
|
+ - travis_retry tox
|
|
|
+notifications:
|
|
|
+ email: false
|