This is an automated email from the ASF dual-hosted git repository.
potiuk pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/main by this push:
new 55eac5e2c7 Remove pytest-asyncio upper-binding limitatin (#36046)
55eac5e2c7 is described below
commit 55eac5e2c701be46e5ea5498b597297130edcd0e
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
---
setup.py | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/setup.py b/setup.py
index 28847e9ba2..96f3f4c703 100644
--- a/setup.py
+++ b/setup.py
@@ -475,9 +475,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",