Files
scylladb/test/cluster
Artsiom Mishuta a1b8630c73 test: enforce skip_bug(link, reason) and migrate call sites
Problem

skip_bug markers were used with inconsistent argument shapes across the test suite, which made metadata validation brittle and reduced traceability to the actual bug report.

What changed

- Enforced a strict skip_bug(link=..., reason=...) interface in test pylib marker handling/types.

- Migrated existing call sites to the new explicit keyword form.

Usage examples

Before: @pytest.mark.skip_bug("SCYLLADB-1576")

After: @pytest.mark.skip_bug(link="https://scylladb.atlassian.net/browse/SCYLLADB-1576", reason="Hangs or OOMs instead of rejecting")
2026-06-01 18:30:55 +02:00
..
2026-05-18 12:23:40 +02:00