1 2language: python 3python: 4 - "2.6" 5 - "2.7" 6 - "3.2" 7 - "3.3" 8 - "3.4" 9 - "3.5" 10 - "3.6" 11 - "nightly" 12 - "pypy" 13 - "pypy3" 14install: 15 - pip install codecov 16 - pip install -r requirements.txt 17 - pip install -e . 18script: 19 - PYTHONPATH=.:$PYTHONPATH python tests/__main__.py 20after_success: 21 - PYTHONPATH=.:$PYTHONPATH coverage run --omit=*test* tests/__main__.py 22 - codecov 23