This is an automated email from the ASF dual-hosted git repository. ephraimanierobi pushed a commit to branch v2-8-test in repository https://gitbox.apache.org/repos/asf/airflow.git
commit beba3b80a1d8a10a0f0b83ee252f5bc67c3bc615 Author: Jarek Potiuk <[email protected]> AuthorDate: Mon Dec 4 11:36:22 2023 +0100 Remove pytest-asyncio upper-binding limitatin (#36046) Thahnks to our report and bisecting the reason (it was caused by bad handling of the "test*.txt" handling) we can now remove the upper-binding for pytest-asyncio as 0.23.2 version has been released (cherry picked from commit 55eac5e2c701be46e5ea5498b597297130edcd0e) --- setup.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index b3c5c0b0a5..e61722d336 100644 --- a/setup.py +++ b/setup.py @@ -484,9 +484,9 @@ _devel_only_tests = [ "beautifulsoup4>=4.7.1", "coverage>=7.2", "pytest>=7.1", - # Pytest-asyncio 0.23.1 breaks our tests. The limitation should be removed when the issue is fixed: - # https://github.com/pytest-dev/pytest-asyncio/issues/703 - "pytest-asyncio<0.23.0", + # Pytest-asyncio 0.23.0 and 0.23.1 break test collection + # See https://github.com/pytest-dev/pytest-asyncio/issues/703 for details. + "pytest-asyncio!=0.23.0,!=0.23.1", "pytest-cov", "pytest-httpx", "pytest-icdiff",
