Skip to content

Commit ce8c1a2

Browse files
committed
add pytest-asyncio plugin to support async test functions
1 parent dcc1fcf commit ce8c1a2

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

setup.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@
88

99
"""Azure Developer Tools package that can be installed using setuptools"""
1010

11-
from codecs import open
1211
import os
1312
import re
14-
from setuptools import setup, find_packages
13+
from codecs import open
1514

15+
from setuptools import find_packages, setup
1616

1717
azdev_path = os.path.dirname(os.path.realpath(__file__))
1818
with open(os.path.join(azdev_path, 'azdev', '__init__.py'), 'r') as version_file:
@@ -77,6 +77,7 @@
7777
'pytest-xdist', # depends on pytest-forked
7878
'pytest-forked',
7979
'pytest>=5.0.0',
80+
'pytest-asyncio',
8081
'pyyaml',
8182
'requests',
8283
'sphinx==1.6.7',

0 commit comments

Comments
 (0)