graphene/tox.ini

30 lines
408 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
graphql-core>=1.1
promise>=2.0
2016-12-02 08:18:37 +03:00
graphql-relay>=0.4.5
2015-09-26 02:35:17 +03:00
six
blinker
2015-09-24 12:11:50 +03:00
singledispatch
2015-11-14 01:15:42 +03:00
mock
pytz
iso8601
pytest-benchmark
2015-10-11 03:50:41 +03:00
setenv =
PYTHONPATH = .:{envdir}
2015-09-24 12:11:50 +03:00
commands=
2015-11-14 01:15:42 +03:00
py.test
[testenv:flake8]
deps = flake8
commands =
pip install -e .
flake8 graphene
2015-09-30 09:40:40 +03:00
[pytest]