mirror of
https://github.com/encode/django-rest-framework.git
synced 2024-12-04 07:24:03 +03:00
Include examples tests.
Drop epio and fox config files.
This commit is contained in:
parent
1342b1a69c
commit
44a5fa11ac
|
@ -7,11 +7,14 @@ env:
|
||||||
- DJANGO=https://github.com/django/django/zipball/master
|
- DJANGO=https://github.com/django/django/zipball/master
|
||||||
- DJANGO=django==1.4.1 --use-mirrors
|
- DJANGO=django==1.4.1 --use-mirrors
|
||||||
- DJANGO=django==1.3.3 --use-mirrors
|
- DJANGO=django==1.3.3 --use-mirrors
|
||||||
|
- TESTS=python setup.py test
|
||||||
|
- TESTS=python examples/setup.py test
|
||||||
# command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
|
# command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
|
||||||
install:
|
install:
|
||||||
- pip install $DJANGO
|
- pip install $DJANGO
|
||||||
- pip install -e . --use-mirrors
|
- pip install -e . --use-mirrors
|
||||||
- pip install -r requirements.txt
|
- pip install -r requirements.txt
|
||||||
|
- pip install -r examples/requirements.txt
|
||||||
|
|
||||||
# command to run tests, e.g. python setup.py test
|
# command to run tests, e.g. python setup.py test
|
||||||
script: python setup.py test
|
script: python setup.py test
|
||||||
|
|
|
@ -1,3 +0,0 @@
|
||||||
Pygments==1.4
|
|
||||||
Markdown==2.0.3
|
|
||||||
git+git://github.com/tomchristie/django-rest-framework.git
|
|
283
tox.ini
283
tox.ini
|
@ -1,283 +0,0 @@
|
||||||
#This file is very NON-DRY because tox currently doesn't support interpolation like configparser does.
|
|
||||||
#There's a ticket covering this at http://code.google.com/p/pytox/issues/detail?id=17#c0
|
|
||||||
|
|
||||||
[tox]
|
|
||||||
envlist=
|
|
||||||
py25-django12,
|
|
||||||
py26-django12,
|
|
||||||
py27-django12,
|
|
||||||
py25-django13,
|
|
||||||
py26-django13,
|
|
||||||
py27-django13,
|
|
||||||
py25-django14a1,
|
|
||||||
py26-django14a1,
|
|
||||||
py27-django14a1,
|
|
||||||
py25-django12-examples,
|
|
||||||
py26-django12-examples,
|
|
||||||
py27-django12-examples,
|
|
||||||
py25-django13-examples,
|
|
||||||
py26-django13-examples,
|
|
||||||
py27-django13-examples,
|
|
||||||
py25-django14a1-examples,
|
|
||||||
py26-django14a1-examples,
|
|
||||||
py27-django14a1-examples
|
|
||||||
|
|
||||||
########################################### CORE TESTS ############################################
|
|
||||||
|
|
||||||
[testenv]
|
|
||||||
commands=
|
|
||||||
python setup.py test
|
|
||||||
|
|
||||||
[testenv:py25-django12]
|
|
||||||
basepython=python2.5
|
|
||||||
deps=
|
|
||||||
django==1.2.4
|
|
||||||
django-staticfiles>=1.1.2
|
|
||||||
coverage==3.4
|
|
||||||
URLObject>=0.6.0
|
|
||||||
unittest-xml-reporting==1.2
|
|
||||||
Pyyaml==3.10
|
|
||||||
# Optional packages:
|
|
||||||
markdown
|
|
||||||
|
|
||||||
[testenv:py26-django12]
|
|
||||||
basepython=python2.6
|
|
||||||
deps=
|
|
||||||
django==1.2.4
|
|
||||||
django-staticfiles>=1.1.2
|
|
||||||
coverage==3.4
|
|
||||||
URLObject>=0.6.0
|
|
||||||
unittest-xml-reporting==1.2
|
|
||||||
Pyyaml==3.10
|
|
||||||
# Optional packages:
|
|
||||||
markdown
|
|
||||||
|
|
||||||
[testenv:py27-django12]
|
|
||||||
basepython=python2.7
|
|
||||||
deps=
|
|
||||||
django==1.2.4
|
|
||||||
django-staticfiles>=1.1.2
|
|
||||||
coverage==3.4
|
|
||||||
URLObject>=0.6.0
|
|
||||||
unittest-xml-reporting==1.2
|
|
||||||
Pyyaml==3.10
|
|
||||||
# Optional packages:
|
|
||||||
markdown
|
|
||||||
|
|
||||||
[testenv:py25-django13]
|
|
||||||
basepython=python2.5
|
|
||||||
deps=
|
|
||||||
django==1.3
|
|
||||||
coverage==3.4
|
|
||||||
URLObject>=0.6.0
|
|
||||||
unittest-xml-reporting==1.2
|
|
||||||
Pyyaml==3.10
|
|
||||||
# Optional packages:
|
|
||||||
markdown
|
|
||||||
|
|
||||||
[testenv:py26-django13]
|
|
||||||
basepython=python2.6
|
|
||||||
deps=
|
|
||||||
django==1.3
|
|
||||||
coverage==3.4
|
|
||||||
URLObject>=0.6.0
|
|
||||||
unittest-xml-reporting==1.2
|
|
||||||
Pyyaml==3.10
|
|
||||||
# Optional packages:
|
|
||||||
markdown
|
|
||||||
|
|
||||||
[testenv:py27-django13]
|
|
||||||
basepython=python2.7
|
|
||||||
deps=
|
|
||||||
django==1.3
|
|
||||||
coverage==3.4
|
|
||||||
URLObject>=0.6.0
|
|
||||||
unittest-xml-reporting==1.2
|
|
||||||
Pyyaml==3.10
|
|
||||||
# Optional packages:
|
|
||||||
markdown
|
|
||||||
|
|
||||||
[testenv:py25-django14a1]
|
|
||||||
basepython=python2.5
|
|
||||||
deps=
|
|
||||||
http://www.djangoproject.com/download/1.4-alpha-1/tarball/
|
|
||||||
coverage==3.4
|
|
||||||
URLObject>=0.6.0
|
|
||||||
unittest-xml-reporting==1.2
|
|
||||||
Pyyaml==3.10
|
|
||||||
# Optional packages:
|
|
||||||
markdown
|
|
||||||
|
|
||||||
[testenv:py26-django14a1]
|
|
||||||
basepython=python2.6
|
|
||||||
deps=
|
|
||||||
http://www.djangoproject.com/download/1.4-alpha-1/tarball/
|
|
||||||
coverage==3.4
|
|
||||||
URLObject>=0.6.0
|
|
||||||
unittest-xml-reporting==1.2
|
|
||||||
Pyyaml==3.10
|
|
||||||
# Optional packages:
|
|
||||||
markdown
|
|
||||||
|
|
||||||
[testenv:py27-django14a1]
|
|
||||||
basepython=python2.7
|
|
||||||
deps=
|
|
||||||
http://www.djangoproject.com/download/1.4-alpha-1/tarball/
|
|
||||||
coverage==3.4
|
|
||||||
URLObject>=0.6.0
|
|
||||||
unittest-xml-reporting==1.2
|
|
||||||
Pyyaml==3.10
|
|
||||||
# Optional packages:
|
|
||||||
markdown
|
|
||||||
|
|
||||||
####################################### EXAMPLES ################################################
|
|
||||||
|
|
||||||
[testenv:py25-django12-examples]
|
|
||||||
basepython=python2.5
|
|
||||||
commands=
|
|
||||||
python examples/runtests.py
|
|
||||||
deps=
|
|
||||||
django==1.2.4
|
|
||||||
django-staticfiles>=1.1.2
|
|
||||||
coverage==3.4
|
|
||||||
URLObject>=0.6.0
|
|
||||||
wsgiref==0.1.2
|
|
||||||
Pygments==1.4
|
|
||||||
httplib2==0.6.0
|
|
||||||
Markdown==2.0.3
|
|
||||||
unittest-xml-reporting==1.2
|
|
||||||
Pyyaml==3.10
|
|
||||||
|
|
||||||
[testenv:py26-django12-examples]
|
|
||||||
basepython=python2.6
|
|
||||||
commands=
|
|
||||||
python examples/runtests.py
|
|
||||||
deps=
|
|
||||||
django==1.2.4
|
|
||||||
django-staticfiles>=1.1.2
|
|
||||||
coverage==3.4
|
|
||||||
URLObject>=0.6.0
|
|
||||||
wsgiref==0.1.2
|
|
||||||
Pygments==1.4
|
|
||||||
httplib2==0.6.0
|
|
||||||
Markdown==2.0.3
|
|
||||||
unittest-xml-reporting==1.2
|
|
||||||
Pyyaml==3.10
|
|
||||||
|
|
||||||
[testenv:py27-django12-examples]
|
|
||||||
basepython=python2.7
|
|
||||||
commands=
|
|
||||||
python examples/runtests.py
|
|
||||||
deps=
|
|
||||||
django==1.2.4
|
|
||||||
django-staticfiles>=1.1.2
|
|
||||||
coverage==3.4
|
|
||||||
URLObject>=0.6.0
|
|
||||||
wsgiref==0.1.2
|
|
||||||
Pygments==1.4
|
|
||||||
httplib2==0.6.0
|
|
||||||
Markdown==2.0.3
|
|
||||||
unittest-xml-reporting==1.2
|
|
||||||
Pyyaml==3.10
|
|
||||||
|
|
||||||
[testenv:py25-django13-examples]
|
|
||||||
basepython=python2.5
|
|
||||||
commands=
|
|
||||||
python examples/runtests.py
|
|
||||||
deps=
|
|
||||||
django==1.3
|
|
||||||
coverage==3.4
|
|
||||||
URLObject>=0.6.0
|
|
||||||
wsgiref==0.1.2
|
|
||||||
Pygments==1.4
|
|
||||||
httplib2==0.6.0
|
|
||||||
Markdown==2.0.3
|
|
||||||
unittest-xml-reporting==1.2
|
|
||||||
Pyyaml==3.10
|
|
||||||
|
|
||||||
[testenv:py26-django13-examples]
|
|
||||||
basepython=python2.6
|
|
||||||
commands=
|
|
||||||
python examples/runtests.py
|
|
||||||
deps=
|
|
||||||
django==1.3
|
|
||||||
coverage==3.4
|
|
||||||
URLObject>=0.6.0
|
|
||||||
wsgiref==0.1.2
|
|
||||||
Pygments==1.4
|
|
||||||
httplib2==0.6.0
|
|
||||||
Markdown==2.0.3
|
|
||||||
unittest-xml-reporting==1.2
|
|
||||||
Pyyaml==3.10
|
|
||||||
|
|
||||||
[testenv:py27-django13-examples]
|
|
||||||
basepython=python2.7
|
|
||||||
commands=
|
|
||||||
python examples/runtests.py
|
|
||||||
deps=
|
|
||||||
django==1.3
|
|
||||||
coverage==3.4
|
|
||||||
URLObject>=0.6.0
|
|
||||||
wsgiref==0.1.2
|
|
||||||
Pygments==1.4
|
|
||||||
httplib2==0.6.0
|
|
||||||
Markdown==2.0.3
|
|
||||||
unittest-xml-reporting==1.2
|
|
||||||
Pyyaml==3.10
|
|
||||||
|
|
||||||
[testenv:py25-django14a1-examples]
|
|
||||||
basepython=python2.5
|
|
||||||
commands=
|
|
||||||
python examples/runtests.py
|
|
||||||
deps=
|
|
||||||
http://www.djangoproject.com/download/1.4-alpha-1/tarball/
|
|
||||||
coverage==3.4
|
|
||||||
URLObject>=0.6.0
|
|
||||||
wsgiref==0.1.2
|
|
||||||
Pygments==1.4
|
|
||||||
httplib2==0.6.0
|
|
||||||
Markdown==2.0.3
|
|
||||||
unittest-xml-reporting==1.2
|
|
||||||
Pyyaml==3.10
|
|
||||||
|
|
||||||
[testenv:py26-django14a1-examples]
|
|
||||||
basepython=python2.6
|
|
||||||
commands=
|
|
||||||
python examples/runtests.py
|
|
||||||
deps=
|
|
||||||
http://www.djangoproject.com/download/1.4-alpha-1/tarball/
|
|
||||||
coverage==3.4
|
|
||||||
URLObject>=0.6.0
|
|
||||||
wsgiref==0.1.2
|
|
||||||
Pygments==1.4
|
|
||||||
httplib2==0.6.0
|
|
||||||
Markdown==2.0.3
|
|
||||||
unittest-xml-reporting==1.2
|
|
||||||
Pyyaml==3.10
|
|
||||||
|
|
||||||
[testenv:py27-django14a1-examples]
|
|
||||||
basepython=python2.7
|
|
||||||
commands=
|
|
||||||
python examples/runtests.py
|
|
||||||
deps=
|
|
||||||
http://www.djangoproject.com/download/1.4-alpha-1/tarball/
|
|
||||||
coverage==3.4
|
|
||||||
URLObject>=0.6.0
|
|
||||||
wsgiref==0.1.2
|
|
||||||
Pygments==1.4
|
|
||||||
httplib2==0.6.0
|
|
||||||
Markdown==2.0.3
|
|
||||||
unittest-xml-reporting==1.2
|
|
||||||
Pyyaml==3.10
|
|
||||||
|
|
||||||
##########################################DOCS#################################################
|
|
||||||
|
|
||||||
[testenv:docs]
|
|
||||||
basepython=python
|
|
||||||
changedir=docs
|
|
||||||
deps=
|
|
||||||
sphinx
|
|
||||||
pytest
|
|
||||||
django==1.3
|
|
||||||
commands=
|
|
||||||
py.test --tb=line -v --junitxml=junit-{envname}.xml check_sphinx.py
|
|
Loading…
Reference in New Issue
Block a user