Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion azdev/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
# license information.
# -----------------------------------------------------------------------------

__VERSION__ = '0.2.6'
__VERSION__ = '0.2.7'
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -77,6 +77,7 @@
'pytest-xdist', # depends on pytest-forked
'pytest-forked',
'pytest>=5.0.0',
'pytest-asyncio',
'pyyaml',
'requests',
'sphinx==1.6.7',
Expand Down