[Dexter] Allow retries on all dexter tests to avoid lldb-dap flakiness (#161847)

This isn't pretty but should help us keep the bot stable while issues
such as #158306 and #158311 are investigated
This commit is contained in:
Orlando Cazalet-Hyams 2025-10-06 09:56:04 +01:00 committed by GitHub
parent af2059791e
commit 1bd9c1bde3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 6 additions and 0 deletions

View File

@ -1,2 +1,5 @@
if "dexter" not in config.available_features:
config.unsupported = True
# LLDB through lldb-dap causes spurious failures.
config.test_retry_attempts = 2

View File

@ -3,3 +3,6 @@ if "dexter" not in config.available_features:
config.name = "DExTer feature tests"
config.suffixes = [".cpp", ".c", ".test"]
# LLDB through lldb-dap causes spurious failures.
config.test_retry_attempts = 2