From 58de50a0faaa70b516cf9c20e0d5251dff63f151 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebasti=C3=A1n=20Ram=C3=ADrez?= Date: Tue, 5 Mar 2019 16:46:18 +0400 Subject: [PATCH] :construction_worker: Add Travis config --- .travis.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..24f04c1 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,21 @@ +sudo: required + +language: python + +python: + - "3.6" + +install: + - pip install docker pytest + +services: + - docker + +script: + - bash scripts/test.sh + +deploy: + provider: script + script: bash scripts/deploy.sh + on: + branch: master