From b9773bbc24ef1f30592e83295d2690bff28c578f Mon Sep 17 00:00:00 2001 From: Kirill Snezhko Date: Thu, 12 Nov 2020 12:28:46 +0300 Subject: [PATCH] Create .travis.yml --- .travis.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..15a742e --- /dev/null +++ b/.travis.yml @@ -0,0 +1,15 @@ +language: python +python: + - "3.6" + +# Install dependencies. +install: + - pip install -r requirements.txt + +# Run linting and tests. +script: + - pylint ./huami-token.py + +# Turn email notifications off. +notifications: + email: false