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
143
143
$ nox -s system
144
144
145
145
# 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>
147
147
148
148
149
149
.. note::
150
150
151
- System tests are only configured to run under Python 3.10 .
151
+ System tests are only configured to run under Python 3.12 .
152
152
For expediency, we do not run them in older versions of Python 3.
153
153
154
154
This alone will not run the tests. You'll need to change some local
Original file line number Diff line number Diff line change 50
50
UNIT_TEST_EXTRAS : List [str ] = []
51
51
UNIT_TEST_EXTRAS_BY_PYTHON : Dict [str , List [str ]] = {}
52
52
53
- SYSTEM_TEST_PYTHON_VERSIONS : List [str ] = ["3.10 " ]
53
+ SYSTEM_TEST_PYTHON_VERSIONS : List [str ] = ["3.12 " ]
54
54
SYSTEM_TEST_STANDARD_DEPENDENCIES : List [str ] = [
55
55
"mock" ,
56
56
"pytest" ,
Original file line number Diff line number Diff line change @@ -11,4 +11,6 @@ filterwarnings =
11
11
# Remove warning once https://github.com/googleapis/gapic-generator-python/issues/1938 is fixed
12
12
ignore:The return_immediately flag is deprecated and should be set to False.:DeprecationWarning
13
13
# 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