From c7bd6b6cf5956ad2b6fb8dfc46be533fc5a82926 Mon Sep 17 00:00:00 2001 From: zhangshine Date: Wed, 10 Jun 2015 01:07:16 +0800 Subject: [PATCH] add trvais tests --- .travis.yml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..d2e6d9f --- /dev/null +++ b/.travis.yml @@ -0,0 +1,28 @@ +language: python + +python: + - "2.6" + - "2.7" + - "3.3" + - "3.4" + +env: + - REPORTLAB=2.6 + - REPORTLAB=2.7 + - REPORTLAB=3.0 + - REPORTLAB=3.1.8 + - REPORTLAB=3.1.44 + - REPORTLAB=3.2 + +matrix: + exclude: + - env: REPORTLAB=3.1.44 + python: "2.6" + - env: REPORTLAB=3.2.0 + python: "2.6" + +install: + - pip install reportlab==REPORTLAB + - python setup.py install + +script: python setup.py test