Skip to content

Commit d819fe3

Browse files
committed
add new pytest-asyncio testing dependency
1 parent 989a591 commit d819fe3

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed

.travis.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,25 +17,25 @@ matrix:
1717
dist: xenial
1818
env: TOX_ENV=coverage
1919
install:
20-
- pip install --upgrade coverage pytest
20+
- pip install --upgrade coverage pytest pytest-asyncio
2121
- pip install .
2222
script:
2323
- make test-coverage
2424
after_success:
2525
- bash <(curl -s https://codecov.io/bash)
2626
- python: 3.6
2727
env: TOX_ENV=py36
28-
install: pip install --upgrade tox pytest
28+
install: pip install --upgrade tox pytest pytest-asyncio
2929
script: tox -e $TOX_ENV
3030
- python: 3.7
3131
env: TOX_ENV=py37
32-
install: pip install --upgrade tox pytest
32+
install: pip install --upgrade tox pytest pytest-asyncio
3333
dist: xenial
3434
script: tox -e $TOX_ENV
3535
- os: osx
3636
language: generic
3737
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
3939
env: TOX_ENV=py37
4040
script: tox -e $TOX_ENV
4141

appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ install:
2020
- "python -m pip install --disable-pip-version-check --user --upgrade pip setuptools virtualenv"
2121

2222
# install the dependencies to run the tests
23-
- "python -m pip install tox"
23+
- "python -m pip install --upgrade tox pytest pytest-asyncio"
2424

2525
build: false
2626

tox.ini

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,5 @@ envlist = py37
55
commands =
66
py.test
77
deps =
8-
pytest
8+
pytest
9+
pytest-asyncio

0 commit comments

Comments
 (0)