graphene/tox.ini
Beau Barker d1a9bdb5c3 Add tox dependencies
Tox fails without pytz, iso8601 and pytest-benchmark
2016-11-07 09:26:28 +11:00

29 lines
393 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
pytz
iso8601
pytest-benchmark
setenv =
PYTHONPATH = .:{envdir}
commands=
py.test
[testenv:flake8]
deps = flake8
commands =
pip install -e .
flake8 graphene
[pytest]