mirror of
https://github.com/graphql-python/graphene.git
synced 2024-11-10 19:56:45 +03:00
26 lines
351 B
INI
26 lines
351 B
INI
[tox]
|
|
envlist = flake8,py27,py33,py34,py35,pypy
|
|
skipsdist = true
|
|
|
|
[testenv]
|
|
deps=
|
|
pytest>=2.7.2
|
|
graphql-core>=0.5.1
|
|
graphql-relay>=0.4.3
|
|
six
|
|
blinker
|
|
singledispatch
|
|
mock
|
|
setenv =
|
|
PYTHONPATH = .:{envdir}
|
|
commands=
|
|
py.test
|
|
|
|
[testenv:flake8]
|
|
deps = flake8
|
|
commands =
|
|
pip install -e .
|
|
flake8 graphene
|
|
|
|
[pytest]
|