Skip to content

Commit d175fa2

Browse files
authored
ignore 3.10 EOL warning (#3170)
1 parent 1af67d7 commit d175fa2

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

tests/conftest.py

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,10 @@
1+
import warnings
2+
3+
warnings.filterwarnings(
4+
"ignore",
5+
message=r"You are using a Python version \(3\.10\..*\) which Google will stop supporting",
6+
category=FutureWarning,
7+
module="google.api_core",
8+
)
9+
110
pytest_plugins = ["tests.common.playwright_fixtures"]

0 commit comments

Comments
 (0)