File tree Expand file tree Collapse file tree 3 files changed +7
-6
lines changed Expand file tree Collapse file tree 3 files changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -17,25 +17,25 @@ matrix:
17
17
dist : xenial
18
18
env : TOX_ENV=coverage
19
19
install :
20
- - pip install --upgrade coverage pytest
20
+ - pip install --upgrade coverage pytest pytest-asyncio
21
21
- pip install .
22
22
script :
23
23
- make test-coverage
24
24
after_success :
25
25
- bash <(curl -s https://codecov.io/bash)
26
26
- python : 3.6
27
27
env : TOX_ENV=py36
28
- install : pip install --upgrade tox pytest
28
+ install : pip install --upgrade tox pytest pytest-asyncio
29
29
script : tox -e $TOX_ENV
30
30
- python : 3.7
31
31
env : TOX_ENV=py37
32
- install : pip install --upgrade tox pytest
32
+ install : pip install --upgrade tox pytest pytest-asyncio
33
33
dist : xenial
34
34
script : tox -e $TOX_ENV
35
35
- os : osx
36
36
language : generic
37
37
osx_image : xcode11 # Python 3.7.4 running on macOS 10.14.4
38
- install : pip3 install --upgrade tox pytest
38
+ install : pip3 install --upgrade tox pytest pytest-asyncio
39
39
env : TOX_ENV=py37
40
40
script : tox -e $TOX_ENV
41
41
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ install:
20
20
- " python -m pip install --disable-pip-version-check --user --upgrade pip setuptools virtualenv"
21
21
22
22
# install the dependencies to run the tests
23
- - " python -m pip install tox"
23
+ - " python -m pip install --upgrade tox pytest pytest-asyncio "
24
24
25
25
build : false
26
26
Original file line number Diff line number Diff line change @@ -5,4 +5,5 @@ envlist = py37
5
5
commands =
6
6
py.test
7
7
deps =
8
- pytest
8
+ pytest
9
+ pytest-asyncio
You can’t perform that action at this time.
0 commit comments