fix: disable pytest-timeout — crashes xdist workers on CI
Both signal and thread timeout methods break pytest-xdist: signal corrupts workers, thread kills them mid-operation. The real fix was timeout=10 on PayPal requests. Global test timeout is not needed.
This commit is contained in:
parent
97f5c8fbf4
commit
7145f2b313
1 changed files with 1 additions and 2 deletions
|
|
@ -1,8 +1,7 @@
|
|||
[pytest]
|
||||
testpaths = make_post_sell
|
||||
python_files = test*.py
|
||||
timeout = 60
|
||||
timeout_method = thread
|
||||
timeout = 0
|
||||
# Uncomment filterwarnings to suppress external library warnings
|
||||
# filterwarnings =
|
||||
# # Ignore datetime.utcnow() deprecation from external libraries
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue