mirror of
https://github.com/graphql-python/graphene.git
synced 2024-11-11 04:07:16 +03:00
f13e54b4a4
* Update pytest command run by tox to match the command used by travis. Updated README contributing section with info about using tox to run tests. * Uppercase 'Graphene'
28 lines
452 B
INI
28 lines
452 B
INI
[tox]
|
|
envlist = flake8,py27,py33,py34,py35,py36,pre-commit,pypy
|
|
skipsdist = true
|
|
|
|
[testenv]
|
|
deps = .[test]
|
|
setenv =
|
|
PYTHONPATH = .:{envdir}
|
|
commands=
|
|
py.test --cov=graphene graphene examples
|
|
|
|
[testenv:pre-commit]
|
|
basepython=python3.6
|
|
deps =
|
|
pre-commit>0.12.0
|
|
setenv =
|
|
LC_CTYPE=en_US.UTF-8
|
|
commands =
|
|
pre-commit {posargs:run --all-files}
|
|
|
|
[testenv:flake8]
|
|
deps = flake8
|
|
commands =
|
|
pip install -e .
|
|
flake8 graphene
|
|
|
|
[pytest]
|