mirror of
https://github.com/iluvcapra/wavinfo.git
synced 2025-12-31 17:00:41 +00:00
19 lines
428 B
YAML
19 lines
428 B
YAML
dist: xenial
|
|
language: python
|
|
python:
|
|
- "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 pytest-cov"
|
|
- "pip install python-coveralls"
|
|
install:
|
|
- "pip install setuptools"
|
|
after_success:
|
|
- coveralls
|