@@ -79,22 +79,6 @@ exclude = ["*_pb2.py", "*_pb2_grpc.py"]
79
79
lint.ignore = [" E741" ] # we occasionally use e.g. O as a type var and l as a loop variable
80
80
81
81
82
- [tool .pytest .ini_options ]
83
- asyncio_mode = " auto"
84
- # Do not use log_cli since this shows logging for all tests, not just the ones
85
- # that failed. Instead, show all logs for failed tests at the end.
86
- log_level = " DEBUG"
87
- log_format = " %(asctime)s [%(levelname)8s] %(message)s (%(filename)s:%(lineno)s)"
88
- testpaths = [" tests" ]
89
- timeout = 600
90
- timeout_func_only = true
91
- filterwarnings = [
92
- " error::temporalio.workflow.UnfinishedUpdateHandlersWarning" ,
93
- " error::temporalio.workflow.UnfinishedSignalHandlersWarning" ,
94
- " ignore::pytest.PytestDeprecationWarning" ,
95
- " ignore::DeprecationWarning" ,
96
- ]
97
-
98
82
[tool .cibuildwheel ]
99
83
before-all = " pip install protoc-wheel-0"
100
84
build = " cp39-win_amd64 cp39-manylinux_x86_64 cp39-manylinux_aarch64 cp39-macosx_x86_64 cp39-macosx_arm64"
@@ -205,3 +189,20 @@ exclude = [
205
189
[tool .uv ]
206
190
# Prevent uv commands from building the package by default
207
191
package = false
192
+
193
+ [tool .pytest .ini_options ]
194
+ asyncio_mode = " auto"
195
+ # Do not use log_cli since this shows logging for all tests, not just the ones
196
+ # that failed. Instead, show all logs for failed tests at the end.
197
+ log_level = " DEBUG"
198
+ log_format = " %(asctime)s [%(levelname)8s] %(message)s (%(filename)s:%(lineno)s)"
199
+ testpaths = [" tests" ]
200
+ timeout = 600
201
+ timeout_func_only = true
202
+ filterwarnings = [
203
+ " error::temporalio.workflow.UnfinishedUpdateHandlersWarning" ,
204
+ " error::temporalio.workflow.UnfinishedSignalHandlersWarning" ,
205
+ " ignore::pytest.PytestDeprecationWarning" ,
206
+ " ignore::DeprecationWarning" ,
207
+ ]
208
+
0 commit comments