From 0d9b732e825dda3a1daca2ca98dfc888e6b092c2 Mon Sep 17 00:00:00 2001 From: Sascha Peilicke Date: Fri, 19 Jul 2013 11:10:05 +0200 Subject: [PATCH] Add .travis.yml for automated testing on Github --- .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..6c84fed --- /dev/null +++ b/.travis.yml @@ -0,0 +1,10 @@ +language: python +python: + - "2.6" + - "2.7" + #- "3.3" +# command to install dependencies +install: "pip install -r requirements.txt --use-mirrors" +# command to run tests +script: python lesscpy/test/__main__.py +