From 9e7a6808a12c32cc6e9ad43212a266c7cea121e2 Mon Sep 17 00:00:00 2001 From: Vadim Kravcenko Date: Sun, 9 Mar 2014 18:52:15 +0100 Subject: [PATCH 1/2] travis config --- .travis.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..e779eff --- /dev/null +++ b/.travis.yml @@ -0,0 +1,10 @@ +language: python +python: + - "2.6" + - "2.7" + - "3.2" + - "3.3" +install: "pip install Flask werkzeug jinja2 peewee wtforms wtf-peewee simplejson" +script: "python runtests.py" +notifications: + email: false From c20a0a5fc57b8c198323bb851ae8c9446612d216 Mon Sep 17 00:00:00 2001 From: Vadim Kravcenko Date: Sun, 9 Mar 2014 19:19:44 +0100 Subject: [PATCH 2/2] Remove 3.2 from travis --- .travis.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index e779eff..023c25e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,7 +2,6 @@ language: python python: - "2.6" - "2.7" - - "3.2" - "3.3" install: "pip install Flask werkzeug jinja2 peewee wtforms wtf-peewee simplejson" script: "python runtests.py"