File tree Expand file tree Collapse file tree 2 files changed +6
-11
lines changed Expand file tree Collapse file tree 2 files changed +6
-11
lines changed Original file line number Diff line number Diff line change 26
26
],
27
27
extras_require = {
28
28
"testing" : [
29
- 'asynctest; python_version < "3.8.0"' ,
29
+ # XXX: The order of these deps seems to matter
30
30
"pytest>=5.4.5" ,
31
31
"pytest-asyncio>=0.12.0" ,
32
+ "pytest-timeout" ,
32
33
"pytest-mock" ,
34
+ "pytest-cov" ,
35
+ "coveralls" ,
36
+ 'asynctest; python_version < "3.8.0"' ,
33
37
]
34
38
},
35
39
)
Original file line number Diff line number Diff line change @@ -9,17 +9,8 @@ skip_missing_interpreters = True
9
9
10
10
[testenv]
11
11
setenv = PYTHONPATH = {toxinidir}
12
- install_command = pip install {opts} {packages}
12
+ extras = testing
13
13
commands = py.test --cov --cov-report =html
14
- deps =
15
- coveralls
16
- pytest ==5.3.5
17
- pytest-cov
18
- pytest-asyncio ==0.10.0
19
- pytest-timeout
20
- pytest-mock
21
- asyncmock
22
- asynctest
23
14
24
15
[testenv:lint]
25
16
basepython = python3
You can’t perform that action at this time.
0 commit comments