TravisCI and CodeCov added

pull/9/head
Thomas Irgang 2017-07-19 14:16:01 +02:00
rodzic 0f9e00c58e
commit ac69c5b942
3 zmienionych plików z 20 dodań i 0 usunięć

9
.travis.yml 100644
Wyświetl plik

@ -0,0 +1,9 @@
language: python
python:
- "3.6"
install:
- pip install .
- pip install -r requirements.txt
- codecov
# command to run tests
script: coverage run tests.py

5
requirements.txt 100644
Wyświetl plik

@ -0,0 +1,5 @@
httplib2
icalendar
pytz
datetime
coverage

6
test.py 100644
Wyświetl plik

@ -0,0 +1,6 @@
import unittest
from test.test_icaldownload import *
from test.test_icalparser import *
unittest.main()