-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathtox.ini
38 lines (31 loc) · 758 Bytes
/
tox.ini
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#
# tox.ini for tastypie-queryset-client
#
[tox]
envlist =
# py25,
py26,
py27,
# py31,
# py32,
[testenv]
setenv =
PYTHONPATH = {toxinidir}/queryset_client/tests:{toxinidir}/queryset_client
deps =
pytest
django
git+git://github.com/toastdriven/django-tastypie.git
commands =
# django-admin.py test base --settings=settings_base --noinput
django-admin.py test base --settings=settings_base
# python -m cProfile -s time /Users/ikeda/.virtualenvs/client-for-tastypie/bin/django-admin.py test base --settings=settings_base
[testenv:py25]
basepython = python2.5
[testenv:py26]
basepython = python2.6
[testenv:py27]
basepython = python2.7
[testenv:py31]
basepython = python3.2
[testenv:py32]
basepython = python3.2