Merge pull request #198 from ramielrowe/master

Add support for travis-ci
This commit is contained in:
Andrew Melton 2013-09-13 10:13:49 -07:00
commit 5a438ff27f

13
.travis.yml Normal file
View File

@ -0,0 +1,13 @@
language: python
python:
- "2.6"
- "2.7"
# command to install dependencies
# install: "pip install -r requirements.txt --use-mirrors"
# # command to run tests
install:
- "sudo rm -rf /dev/shm && sudo ln -s /run/shm /dev/shm"
before_script:
- "rm -f __init__.py"
- "rm -f __init__.pyc"
script: "./run_tests_venv.sh"