Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion ci/jobs/scripts/integration_tests_runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -583,9 +583,13 @@ def matches_substring(substring, log, is_regex):
test_logs = extract_fail_logs(log_path)
test_log = test_logs.get(failed_test.split("::")[-1])
if test_log is None:
# Log extraction can fail if the fail was in the teardown
log_file.write(
f"WARNING: Test '{failed_test}' has no logs among {test_logs.keys()}\n"
f"WARNING: Test '{failed_test}' has no logs among {list(test_logs.keys())}, assuming log extraction failed, proceeding with full log\n"
)
with open(log_path, "r", encoding="utf-8") as f:
test_log = f.read()

known_fail_reason = test_is_known_fail(
failed_test, test_log, log_file
)
Expand Down
23 changes: 22 additions & 1 deletion tests/broken_tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,21 @@
message: result differs with reference
check_types:
- msan
- name: 00024_random_counters
reason: INVESTIGATE - random timeout
message: Timeout! Killing process group
- name: test_storage_s3_queue/test_5.py::test_migration[1-s3queue_]
reason: KNOWN - Sometimes fails due to test order
message: 'Failed: Timeout >900.0s'
- name: test_storage_s3_queue/test_5.py::test_migration[3-s3queue_]
reason: KNOWN - Sometimes fails due to test order
message: 'Failed: Timeout >900.0s'
- name: test_storage_s3_queue/test_5.py::test_migration[1-]
reason: KNOWN - Sometimes fails due to test order
message: 'Failed: Timeout >900.0s'
- name: test_storage_s3_queue/test_5.py::test_migration[3-]
reason: KNOWN - Sometimes fails due to test order
message: 'Failed: Timeout >900.0s'
- name: test_scheduler_cpu_preemptive/test.py::test_downscaling[cpu-slot-preemption-timeout-1ms]
reason: INVESTIGATE - Unstable on tsan, asan
message: 'Failed: Timeout >900.0s'
Expand Down Expand Up @@ -88,6 +103,12 @@
reason: 'KNOWN - Unstable upstream'
- name: test_storage_s3_queue/test_2.py::test_shards_distributed[unordered-1]
reason: 'KNOWN - Unstable upstream'
- name: test_storage_s3_queue/test_2.py::test_shards_distributed[unordered-8]
reason: 'KNOWN - Unstable upstream'
- name: test_storage_s3_queue/test_2.py::test_shards_distributed[ordered-1]
reason: 'KNOWN - Unstable upstream'
- name: test_storage_s3_queue/test_2.py::test_shards_distributed[ordered-2]
reason: 'KNOWN - Unstable upstream'
- name: test_storage_s3_queue/test_4.py::test_list_and_delete_race
reason: 'KNOWN - Unstable upstream'
message: AssertionError
Expand Down Expand Up @@ -163,7 +184,7 @@
|Timeout exceeded while receiving data from server\.
|DB::Exception: Estimated query execution time \((\d+\.\d+) seconds\) is too long\.
|curl: \(28\) Operation timed out'
not_message: 'Sanitizer trap'
not_message: 'Sanitizer trap|Sanitizer assert'
regex: true
check_types:
- tsan
Expand Down
Loading