This repository was archived by the owner on Mar 9, 2026. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +6
-4
lines changed
Expand file tree Collapse file tree 3 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -143,12 +143,12 @@ Running System Tests
143143 $ nox -s system
144144
145145 # Run a single system test
146- $ nox -s system-3.10 -- -k <name of test>
146+ $ nox -s system-3.12 -- -k <name of test>
147147
148148
149149 .. note::
150150
151- System tests are only configured to run under Python 3.10 .
151+ System tests are only configured to run under Python 3.12 .
152152 For expediency, we do not run them in older versions of Python 3.
153153
154154 This alone will not run the tests. You'll need to change some local
Original file line number Diff line number Diff line change 5050UNIT_TEST_EXTRAS : List [str ] = []
5151UNIT_TEST_EXTRAS_BY_PYTHON : Dict [str , List [str ]] = {}
5252
53- SYSTEM_TEST_PYTHON_VERSIONS : List [str ] = ["3.10 " ]
53+ SYSTEM_TEST_PYTHON_VERSIONS : List [str ] = ["3.12 " ]
5454SYSTEM_TEST_STANDARD_DEPENDENCIES : List [str ] = [
5555 "mock" ,
5656 "pytest" ,
Original file line number Diff line number Diff line change @@ -11,4 +11,6 @@ filterwarnings =
1111 # Remove warning once https://github.com/googleapis/gapic-generator-python/issues/1938 is fixed
1212 ignore:The return_immediately flag is deprecated and should be set to False.:DeprecationWarning
1313 # Remove warning once https://github.com/googleapis/gapic-generator-python/issues/1939 is fixed
14- ignore:get_mtls_endpoint_and_cert_source is deprecated.:DeprecationWarning
14+ ignore:get_mtls_endpoint_and_cert_source is deprecated.:DeprecationWarning
15+ # Remove warning once https://github.com/grpc/grpc/issues/35974 is fixed
16+ ignore:unclosed:ResourceWarning
You can’t perform that action at this time.
0 commit comments