mirror of
https://github.com/RRZE-HPC/OSACA.git
synced 2026-01-05 18:50:08 +01:00
20 lines
318 B
YAML
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
|