mirror of
https://github.com/graphql-python/graphene.git
synced 2024-11-11 04:07:16 +03:00
28 lines
449 B
INI
28 lines
449 B
INI
[tox]
|
|
envlist = flake8,py27,py33,py34,py35,pypy
|
|
skipsdist = true
|
|
|
|
[testenv]
|
|
deps=
|
|
pytest>=2.7.2
|
|
django>=1.8.0,<1.9
|
|
pytest-django
|
|
graphql-core==0.4.7b0
|
|
graphql-relay==0.3.3
|
|
six
|
|
blinker
|
|
singledispatch
|
|
setenv =
|
|
PYTHONPATH = .:{envdir}
|
|
commands=
|
|
py.test tests/ examples/
|
|
|
|
[testenv:flake8]
|
|
deps = flake8
|
|
commands =
|
|
pip install -e .
|
|
flake8 graphene
|
|
|
|
[pytest]
|
|
DJANGO_SETTINGS_MODULE = tests.django_settings
|