diff options
| author | Ben Firshman | 2014-09-21 02:51:11 +0200 |
|---|---|---|
| committer | Ben Firshman | 2014-09-21 02:51:11 +0200 |
| commit | 61f4de67ed9cfdf09df4cee83d3c3c88775a6bf4 (patch) | |
| tree | 6348cf033160732e7ba6898c00b6bbbc544ca593 /.travis.yml | |
| parent | 26a2bf299401551f37b84a9a6013190c4dcfaccf (diff) | |
| parent | a003ada5378e01c00e8f6405dc017f2d1e7376c8 (diff) | |
| download | django-shorturls-61f4de67ed9cfdf09df4cee83d3c3c88775a6bf4.tar.bz2 | |
Merge pull request #7 from bfirsh/travis
Add Travis CI
Diffstat (limited to '.travis.yml')
| -rw-r--r-- | .travis.yml | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..fa25cb8 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,15 @@ +language: python +python: + - "2.6" + - "2.7" + +env: + - DJANGO="Django==1.2" + - DJANGO="Django==1.3" + - DJANGO="Django==1.4.15" + +# command to install dependencies +install: pip install $DJANGO --use-mirrors + +# command to run tests +script: django-admin.py test --pythonpath=src/ --settings=shorturls.testsettings |
