From 987097141e43f55ec1bb32087c0731f11cf5a6fa Mon Sep 17 00:00:00 2001 From: Mike Salvatore Date: Sat, 16 May 2020 17:36:50 -0400 Subject: [PATCH] Add .travis.yml --- .travis.yml | 18 ++++++++++++++++++ tests/__init__.py | 0 2 files changed, 18 insertions(+) create mode 100644 .travis.yml create mode 100644 tests/__init__.py 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