graphene/tox.ini

28 lines
449 B
INI
Raw Normal View History

2015-09-24 12:11:50 +03:00
[tox]
envlist = flake8,py27,py33,py34,py35,pypy
skipsdist = true
2015-09-24 12:11:50 +03:00
[testenv]
deps=
pytest>=2.7.2
django>=1.8.0,<1.9
2015-09-30 09:40:40 +03:00
pytest-django
2015-10-19 05:46:45 +03:00
graphql-core==0.4.7b0
2015-10-21 07:32:15 +03:00
graphql-relay==0.3.3
2015-09-26 02:35:17 +03:00
six
blinker
2015-09-24 12:11:50 +03:00
singledispatch
2015-10-11 03:50:41 +03:00
setenv =
PYTHONPATH = .:{envdir}
2015-09-24 12:11:50 +03:00
commands=
py.test tests/ examples/
[testenv:flake8]
deps = flake8
commands =
pip install -e .
flake8 graphene
2015-09-30 09:40:40 +03:00
[pytest]
DJANGO_SETTINGS_MODULE = tests.django_settings