Files
OSACA/.travis.yml
2019-08-09 09:40:53 +02:00

20 lines
318 B
YAML

sudo: false
language: python
python:
- "3.5"
- "3.6"
# Python 3.7 not working yet
# - "3.7"
before_install:
# - pip install tox-travis
- pip install codecov
install:
- pip install -e .
cache: pip
script:
# - tox
- coverage run -p tests/all_tests.py
after_success:
- coverage combine
- codecov