diff options
| author | Tom Christie | 2012-08-25 22:24:24 +0100 |
|---|---|---|
| committer | Tom Christie | 2012-08-25 22:24:24 +0100 |
| commit | 70d9c747e786e191c8a7f659e52a7cfe65dd9045 (patch) | |
| tree | 2be05544e403c2056e2ef4e937896d3c87a491da | |
| parent | 03c6ccb45f6a9586cf4c6ffe271608b39870d640 (diff) | |
| download | django-rest-framework-70d9c747e786e191c8a7f659e52a7cfe65dd9045.tar.bz2 | |
Drop examples tests from travis to keep number of configurations sane
| -rw-r--r-- | .travis.yml | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/.travis.yml b/.travis.yml index 8638eac0..3ce1ee7b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,20 +3,24 @@ language: python python: - "2.6" - "2.7" + env: - DJANGO=https://github.com/django/django/zipball/master TESTS='python setup.py test' - - DJANGO=https://github.com/django/django/zipball/master TESTS='python examples/runtests.py' - DJANGO=django==1.4.1 --use-mirrors TESTS='python setup.py test' - - DJANGO=django==1.4.1 --use-mirrors TESTS='python examples/runtests.py' - DJANGO=django==1.3.3 --use-mirrors TESTS='python setup.py test' - - DJANGO=django==1.3.3 --use-mirrors TESTS='python examples/runtests.py' + # command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors install: - pip install $DJANGO - pip install -e . --use-mirrors - pip install -r requirements.txt - - pip install -r examples/requirements.txt # command to run tests, e.g. python setup.py test script: - $TESTS + +# Examples tests, currently dropped to keep the number of configurations sane +# - DJANGO=https://github.com/django/django/zipball/master TESTS='python examples/runtests.py' +# - DJANGO=django==1.4.1 --use-mirrors TESTS='python examples/runtests.py' +# - DJANGO=django==1.3.3 --use-mirrors TESTS='python examples/runtests.py' +# - pip install -r examples/requirements.txt
\ No newline at end of file |
