diff options
author | ankitjavalkar | 2015-05-15 17:42:36 +0530 |
---|---|---|
committer | ankitjavalkar | 2015-06-17 14:48:06 +0530 |
commit | 4133466bf7e3ffee7d8075c4489feb8287665d6b (patch) | |
tree | 0569e47d4b3211a911851c1e6c069db49c9b0669 /.travis.yml | |
parent | f62c4c3f06d8a515e05d1dcd201acbfbdd41ee8d (diff) | |
download | online_test-4133466bf7e3ffee7d8075c4489feb8287665d6b.tar.gz online_test-4133466bf7e3ffee7d8075c4489feb8287665d6b.tar.bz2 online_test-4133466bf7e3ffee7d8075c4489feb8287665d6b.zip |
Add .travis.yml file
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 21 |
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 |