Files
zaza-openstack-tests/.travis.yml
Chris MacNaughton db7dd70add Merge pull request #225 from ChrisMacNaughton/feature/add-coverage
Add coverage reporting for unit tests
2020-04-10 09:32:18 +02:00

24 lines
484 B
YAML

sudo: true
dist: xenial
language: python
install:
- pip install tox-travis
- pip install codecov
matrix:
include:
- name: "Python 3.5"
python: 3.5
env: ENV=pep8,py3
- name: "Python 3.6"
python: 3.6
env: ENV=pep8,py3
- name: "Python 3.7"
python: 3.7
env: ENV=pep8,py3
- name: "Python 3.8"
python: 3.7
env: ENV=pep8,py3
script:
- tox -c tox.ini -e $ENV
after_success:
- codecov --verbose --gcov-glob unit_tests/*