Skip to content

Commit 81d53e4

Browse files
chore: set system test version to 3.13 (#1113)
1 parent dc3864f commit 81d53e4

File tree

6 files changed

+15
-4
lines changed

6 files changed

+15
-4
lines changed
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# Format: //devtools/kokoro/config/proto/build.proto
2+
3+
# Only run this nox session.
4+
env_vars: {
5+
key: "NOX_SESSION"
6+
value: "system-3.13"
7+
}

packages/google-cloud-firestore/.kokoro/presubmit/system.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
# Only run this nox session.
44
env_vars: {
55
key: "NOX_SESSION"
6-
value: "system-3.9"
6+
value: "system-3.13"
77
}

packages/google-cloud-firestore/noxfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@
6262
UNIT_TEST_EXTRAS: List[str] = []
6363
UNIT_TEST_EXTRAS_BY_PYTHON: Dict[str, List[str]] = {}
6464

65-
SYSTEM_TEST_PYTHON_VERSIONS: List[str] = ["3.9", "3.14"]
65+
SYSTEM_TEST_PYTHON_VERSIONS: List[str] = ["3.13"]
6666
SYSTEM_TEST_STANDARD_DEPENDENCIES: List[str] = [
6767
"mock",
6868
"pytest",

packages/google-cloud-firestore/owlbot.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ def update_fixup_scripts(library):
144144
cov_level=100,
145145
split_system_tests=True,
146146
default_python_version="3.13",
147-
system_test_python_versions=["3.9", "3.14"],
147+
system_test_python_versions=["3.13"],
148148
unit_test_python_versions=["3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13", "3.14"],
149149
)
150150

packages/google-cloud-firestore/pytest.ini

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,5 @@ filterwarnings =
2222
ignore:.*The \`credentials_file\` argument is deprecated.*:DeprecationWarning
2323
# Remove after updating test dependencies that use asyncio.iscoroutinefunction
2424
ignore:.*\'asyncio.iscoroutinefunction\' is deprecated.*:DeprecationWarning
25-
ignore:.*\'asyncio.get_event_loop_policy\' is deprecated.*:DeprecationWarning
25+
ignore:.*\'asyncio.get_event_loop_policy\' is deprecated.*:DeprecationWarning
26+
ignore:.*Please upgrade to the latest Python version.*:FutureWarning

packages/google-cloud-firestore/tests/unit/v1/test_async_client.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -374,6 +374,9 @@ async def test_asyncclient_get_all_read_time():
374374

375375

376376
@pytest.mark.asyncio
377+
@pytest.mark.filterwarnings(
378+
"ignore:coroutine method 'aclose' of 'AsyncIter' was never awaited:RuntimeWarning"
379+
)
377380
async def test_asyncclient_get_all_unknown_result():
378381
from google.cloud.firestore_v1.base_client import _BAD_DOC_TEMPLATE
379382

0 commit comments

Comments
 (0)