File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11language : python
2- env :
3- matrix :
4- - TOXENV=py26
5- - TOXENV=py27
6- - TOXENV=py32
7- - TOXENV=py33
8- - TOXENV=py34
9- - TOXENV=py35
10- - TOXENV=py36
11- - TOXENV=pypy
12- - TOXENV=flake8
2+ python :
3+ - " 2.6"
4+ - " 2.7"
5+ - " 3.2"
6+ - " 3.3"
7+ - " 3.4"
8+ - " 3.5"
9+ - " 3.6"
10+ - " pypy"
1311before_install :
1412 - git submodule update --init
1513 - python setup.py dataset
1614install :
1715 - pip install tox
18- - if test "$TOXENV" = py36 ; then pip install coveralls ; fi
19- - if test "$TOXENV" = py32 ; then pip install "virtualenv<14.0.0" ; fi
20- script : tox
16+ - pip install tox-travis
17+ - if test "$TRAVIS_PYTHON_VERSION" = 3.6 ; then pip install coveralls ; fi
18+ - if test "$TRAVIS_PYTHON_VERSION" = 3.2 ; then pip install "virtualenv<14.0.0" ; fi
19+ script :
20+ - tox
21+ - if test "$TRAVIS_PYTHON_VERSION" = 3.6 ; then tox -e flake8 ; fi
2122after_script :
22- - if test "$TOXENV " = py36 ; then coveralls ; fi
23+ - if test "$TRAVIS_PYTHON_VERSION " = 3.6 ; then coveralls ; fi
You can’t perform that action at this time.
0 commit comments