Skip to content

Commit 5797e99

Browse files
committed
WIP
1 parent 89158ee commit 5797e99

File tree

1 file changed

+17
-16
lines changed

1 file changed

+17
-16
lines changed

pyproject.toml

Lines changed: 17 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -79,22 +79,6 @@ exclude = ["*_pb2.py", "*_pb2_grpc.py"]
7979
lint.ignore = ["E741"] # we occasionally use e.g. O as a type var and l as a loop variable
8080

8181

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-
9882
[tool.cibuildwheel]
9983
before-all = "pip install protoc-wheel-0"
10084
build = "cp39-win_amd64 cp39-manylinux_x86_64 cp39-manylinux_aarch64 cp39-macosx_x86_64 cp39-macosx_arm64"
@@ -205,3 +189,20 @@ exclude = [
205189
[tool.uv]
206190
# Prevent uv commands from building the package by default
207191
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

Comments
 (0)