Skip to content

Commit c47a48d

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

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

HISTORY.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22
33
Release History
44
===============
5+
0.2.7
6+
++++++
7+
* Add `pytest-asyncio` to dependencies to fix `azdev test` with async tests.
8+
59
0.2.6
610
++++++
711
* Bump `deepdiff` to 8.6.1 and `azure-cli-diff-tool` to 0.1.1

azdev/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44
# license information.
55
# -----------------------------------------------------------------------------
66

7-
__VERSION__ = '0.2.6'
7+
__VERSION__ = '0.2.7'

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)