mirror of https://github.com/scrapy/scrapy.git
Simplify tox.ini asyncio entries.
This commit is contained in:
parent
bfb78b8dea
commit
afc886e578
10
tox.ini
10
tox.ini
|
|
@ -107,14 +107,16 @@ deps =
|
|||
reppy
|
||||
robotexclusionrulesparser
|
||||
|
||||
[asyncio]
|
||||
commands =
|
||||
py.test --cov=scrapy --cov-report= --reactor=asyncio {posargs:scrapy tests}
|
||||
|
||||
[testenv:py35-asyncio]
|
||||
basepython = python3.5
|
||||
deps = {[testenv]deps}
|
||||
commands =
|
||||
py.test --cov=scrapy --cov-report= --reactor=asyncio {posargs:scrapy tests}
|
||||
commands = {[asyncio]commands}
|
||||
|
||||
[testenv:py38-asyncio]
|
||||
basepython = python3.8
|
||||
deps = {[testenv]deps}
|
||||
commands =
|
||||
py.test --cov=scrapy --cov-report= --reactor=asyncio {posargs:scrapy tests}
|
||||
commands = {[asyncio]commands}
|
||||
|
|
|
|||
Loading…
Reference in New Issue