This is an automated email from the ASF dual-hosted git repository.
eladkal 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 cc2521cf6c Limit pytest-asyncio even more - to <0.23.0 (#36040)
cc2521cf6c is described below
commit cc2521cf6c01363f0e1c96bbd6ed0231406ecd63
Author: Jarek Potiuk <[email protected]>
AuthorDate: Mon Dec 4 06:17:39 2023 +0100
Limit pytest-asyncio even more - to <0.23.0 (#36040)
Seems that the pytest-asyncio problem was already introduced by
0.23.0. In order to allow tests passing now, we should limit it
to below that version (follow up after #36037)
---
setup.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/setup.py b/setup.py
index 61be0684c4..28847e9ba2 100644
--- a/setup.py
+++ b/setup.py
@@ -477,7 +477,7 @@ _devel_only_tests = [
"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.1",
+ "pytest-asyncio<0.23.0",
"pytest-cov",
"pytest-httpx",
"pytest-icdiff",