Skip to content
Merged
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
7 changes: 7 additions & 0 deletions tests/test_hybrid_engine.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,13 @@ def test_query_confidence_without_deep(self):
assert "confidence" in data
assert data["confidence"] in ("high", "medium", "low")

@pytest.mark.skip(reason=(
"`impact --name X` on a large repo hangs on headless Linux CI (0.9s "
"local, >60s CI) — a product bug tracked in #322, not a test bug. Its "
"assertion (confidence present without --deep) is covered by "
"test_dead_code_confidence_fields via the `audit` umbrella, which does "
"not hang on Linux. Un-skip when #322 is fixed."
))
def test_impact_confidence_without_deep(self):
# Post-#195 umbrella form: `impact <ws> --name X` (was `impact X <ws>`,
# which errors — the old form left stdout empty so this test passed
Expand Down
Loading