Files
pycmx/.travis.yml
Jamie Hardt 08dea6031d Update .travis.yml
switch to codecov
2019-01-05 12:49:52 -08:00

16 lines
288 B
YAML

language: python
python:
- "3.6"
- "3.5"
- "2.7"
script:
- "python setup.py test"
- "py.test tests/ -v --cov pycmx --cov-report term-missing"
install:
- "pip install setuptools"
before_install:
- "pip install coverage"
- "pip install codecov"
after_success:
- "codecov"