summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml21
1 files changed, 21 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml
new file mode 100644
index 0000000..a5fb3f1
--- /dev/null
+++ b/.travis.yml
@@ -0,0 +1,21 @@
+language: python
+
+python:
+ - "2.7"
+
+env:
+ - DJANGO=1.5.7
+ - DJANGO=1.6.4
+
+# command to install dependencies
+install:
+ - pip install -q Django==$DJANGO --use-mirrors
+
+before_install:
+ - sudo apt-get update -qq
+ - sudo apt-get install -y scilab
+
+# command to run tests
+script:
+ - nosetests ./testapp/tests/
+ - python manage.py test \ No newline at end of file