From 85cc1a9ebf151b19ab9e32157b91d2390b1fa053 Mon Sep 17 00:00:00 2001 From: Hironsan Date: Wed, 23 Jan 2019 16:26:27 +0900 Subject: [PATCH] Add travis config --- .travis.yml | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 00000000..c3ba895a --- /dev/null +++ b/.travis.yml @@ -0,0 +1,9 @@ +language: python +python: + - "3.6" +install: + - pip install -r requirements.txt +script: + - python app/manage.py migrate + - python app/manage.py collectstatic + - python app/manage.py test server.tests