1# Tell Travis what to do 2# https://travis-ci.org/nedbat/coveragepy 3 4language: python 5 6sudo: false 7 8python: 9 - 2.7 10 11env: 12 - TOXENV=py26 13 - TOXENV=py27 14 - TOXENV=py33 15 - TOXENV=py34 16 - TOXENV=pypy 17 - TOXENV=py27 COVERAGE_COVERAGE=yes 18 19install: 20 - pip install -r requirements/tox.pip 21 22script: 23 - tox 24 - if [ $COVERAGE_COVERAGE == 'yes' ]; then python igor.py combine_html; fi 25 - if [ $COVERAGE_COVERAGE == 'yes' ]; then pip install codecov; fi 26 - if [ $COVERAGE_COVERAGE == 'yes' ]; then codecov; fi 27