diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..6c44a9a --- /dev/null +++ b/.travis.yml @@ -0,0 +1,18 @@ +language: python +python: + - "3.5" + - "3.6" + - "3.7" + - "3.8" +before_install: + - pip install codecov + - pip install pytest-cov + + # Hack to remove the pytest alias defined in setup.cfg + - rm setup.cfg +install: + - pip install . +script: + - py.test -vv --cov-report=term --cov=owwatcher +after_success: + codecov diff --git a/tests/__init__.py b/tests/__init__.py new file mode 100644 index 0000000..e69de29