From 5ba4f47c4b38ee6ce08b1f32a9eb8d46eebf2f09 Mon Sep 17 00:00:00 2001 From: Alex Morega Date: Wed, 3 Jul 2013 15:19:47 +0200 Subject: [PATCH] travis configuration --- .travis.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 00000000..c5cbea92 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,13 @@ +language: python + +python: + - "2.6" + - "2.7" + - "pypy" + - "3.3" + +install: + - pip install pytz + - pip install --editable . + +script: python setup.py test -- 2.47.3