diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..4531499 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,17 @@ +language: python +python: + - 3.5 + - 3.6 + +#these directories are persistent +cache: pip + +before_install: + - pip install coverage coveralls +script: + - "coverage run --source=qtune --rcfile=coverage.ini setup.py test" +after_success: + - coveralls + +notifications: + email: false diff --git a/coverage.ini b/coverage.ini new file mode 100644 index 0000000..ae4a1e4 --- /dev/null +++ b/coverage.ini @@ -0,0 +1,5 @@ +[run] +branch = True +omit = + *main.py + *__init__.py