We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 088148a commit 644aae9Copy full SHA for 644aae9
tests/conftest.py
@@ -53,6 +53,8 @@
53
collect_ignore_glob.append("*test_fastapi*")
54
# aiohttp-server tests failing due to deprecated methods used
55
collect_ignore_glob.append("*test_aiohttp_server*")
56
+ # grpcio is failing to build on 3.14.0a5
57
+ collect_ignore_glob.append("*test_grpc*")
58
59
60
@pytest.fixture(scope="session")
tests/requirements-pre314.txt
@@ -12,7 +12,8 @@ Django>=4.2.16
12
flask>=2.3.2
13
# gevent is taking more than 20min to build on 3.14
14
# gevent>=1.4.0
15
-grpcio>=1.14.1
+# grpcio is failing to build on 3.14.0a5
16
+# grpcio>=1.14.1
17
google-cloud-pubsub>=2.0.0
18
google-cloud-storage>=1.24.0
19
legacy-cgi>=2.6.1
0 commit comments