diff --git a/HISTORY.rst b/HISTORY.rst index 3477933c..6d1d44bb 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -2,6 +2,10 @@ Release History =============== +0.2.7 +++++++ +* Add `pytest-asyncio` to dependencies to fix `azdev test` with async tests. + 0.2.6 ++++++ * Bump `deepdiff` to 8.6.1 and `azure-cli-diff-tool` to 0.1.1 diff --git a/azdev/__init__.py b/azdev/__init__.py index 92f475a7..56001404 100644 --- a/azdev/__init__.py +++ b/azdev/__init__.py @@ -4,4 +4,4 @@ # license information. # ----------------------------------------------------------------------------- -__VERSION__ = '0.2.6' +__VERSION__ = '0.2.7' diff --git a/setup.py b/setup.py index 18f9afbb..d4eb3ce6 100644 --- a/setup.py +++ b/setup.py @@ -8,11 +8,11 @@ """Azure Developer Tools package that can be installed using setuptools""" -from codecs import open import os import re -from setuptools import setup, find_packages +from codecs import open +from setuptools import find_packages, setup azdev_path = os.path.dirname(os.path.realpath(__file__)) with open(os.path.join(azdev_path, 'azdev', '__init__.py'), 'r') as version_file: @@ -77,6 +77,7 @@ 'pytest-xdist', # depends on pytest-forked 'pytest-forked', 'pytest>=5.0.0', + 'pytest-asyncio', 'pyyaml', 'requests', 'sphinx==1.6.7',