icalevents/.travis.yml

19 wiersze
213 B
YAML
Czysty Zwykły widok Historia

2017-07-19 12:18:37 +00:00
sudo: false
2017-07-19 12:16:01 +00:00
language: python
2017-07-19 12:18:37 +00:00
2017-07-19 12:16:01 +00:00
python:
2017-07-19 13:02:47 +00:00
- "3.4"
2017-07-19 12:16:01 +00:00
- "3.6"
2017-07-19 12:18:37 +00:00
2017-07-19 12:16:01 +00:00
install:
- pip install -r requirements.txt
2017-07-19 12:19:38 +00:00
2017-07-19 12:16:01 +00:00
# command to run tests
2017-07-19 12:18:37 +00:00
script:
2017-07-19 12:24:20 +00:00
- coverage run test.py
2017-07-19 12:18:37 +00:00
after_success:
- codecov
2017-07-19 13:15:07 +00:00
- coverage report -m