1 2 language: python 3 python: 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" 14 install: 15 - pip install codecov 16 - pip install -r requirements.txt 17 - pip install -e . 18 script: 19 - PYTHONPATH=.:$PYTHONPATH python tests/__main__.py 20 after_success: 21 - PYTHONPATH=.:$PYTHONPATH coverage run --omit=*test* tests/__main__.py 22 - codecov 23