.travis.yml 272 Bytes Edit 1 2 3 4 5 6 7 8 9 10 11 12 language: python python: - "3.5" - "3.6" # command to install dependencies install: - "python setup.py -q install" - "pip install pytest-pep8 pytest-cov codecov" # command to run tests script: "pytest --cov-config .coveragerc --cov=./" after_success: - codecov