File tree 2 files changed +6
-6
lines changed
2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 8
8
9
9
tests_requires = [
10
10
'pytest>=2.7.2' ,
11
+ 'pytest-cov==2.8.1' ,
11
12
'pytest-flask>=0.10.0' ,
12
13
'graphql-core>=2.1,<3' ,
13
14
'graphql-server-core>=1.1,<2' ,
17
18
dev_requires = [
18
19
'flake8==3.7.9' ,
19
20
'isort<4.0.0'
20
- ] + tests_require
21
+ ] + tests_requires
21
22
22
23
setup (
23
24
name = "Flask-GraphQL" ,
50
51
install_requires = install_requires ,
51
52
tests_require = tests_requires ,
52
53
extras_require = {
53
- 'test' : tests_require ,
54
+ 'test' : tests_requires ,
54
55
'dev' : dev_requires ,
55
- }
56
+ },
56
57
include_package_data = True ,
57
58
zip_safe = False ,
58
59
platforms = "any" ,
Original file line number Diff line number Diff line change 1
1
[tox]
2
2
envlist =
3
3
py{27,35,36,37}
4
- flake8,import-order,pypy
4
+ flake8,import-order
5
5
requires = tox-conda
6
6
7
7
[testenv]
@@ -21,7 +21,6 @@ commands =
21
21
22
22
[testenv:import-order]
23
23
basepython =python3.6
24
- deps =
25
- isort
24
+ deps = -e.[dev]
26
25
commands =
27
26
isort --check-only flask_graphql/ -rc
You can’t perform that action at this time.
0 commit comments