From 34cd49b77d24541f7ea192a82e01e0d785d4a3cc Mon Sep 17 00:00:00 2001 From: Vitor Freitas Date: Sat, 11 Jul 2015 14:01:22 +0300 Subject: [PATCH] Add travis config file --- .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 000000000..abfd5a248 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,9 @@ +language: python +python: + - "2.7" +install: "pip install -r requirements.pip" +before_script: + - cp .env.example .env + - python manage.py syncdb +script: + - python manage.py test \ No newline at end of file