Files
wavinfo/.travis.yml
Jamie Hardt 0e1094421e Update .travis.yml
Removing 2.7 for now
2019-01-05 10:28:23 -08:00

22 lines
512 B
YAML

dist: xenial
language: python
python:
# - "2.7"
- "3.6"
- "3.5"
script:
- "python setup.py test"
- "py.test tests/ -v --cov wavinfo --cov-report term-missing"
before_install:
- "sudo apt-get update"
- "sudo add-apt-repository universe"
- "sudo apt-get install -y ffmpeg"
- "pip install coverage"
# - "pip install coverage==4.4"
- "pip install pytest-cov==2.5.0"
- "pip install python-coveralls"
install:
- "pip install setuptools"
after_success:
- coveralls