Skip to content

Commit 53d6445

Browse files
committed
fix(interrupt-rotation): tweak repos to watch
1 parent 67b5012 commit 53d6445

2 files changed

Lines changed: 1 addition & 14 deletions

File tree

app/utils/interrupt_data.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,6 @@
3838
"streamlit/streamlit-pdf",
3939
"streamlit/agent-skills",
4040
"streamlit/st-issues",
41-
"streamlit/site",
4241
)
4342

4443

tests/test_interrupt_data.py

Lines changed: 1 addition & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -180,16 +180,6 @@ def test_get_monitored_repo_open_prs(monkeypatch: pytest.MonkeyPatch) -> None:
180180
updated_at="2026-02-13T10:00:00+00:00",
181181
)
182182
],
183-
"streamlit/site": [
184-
_pr(
185-
number=105,
186-
repo="streamlit/site",
187-
title="Docs refresh",
188-
labels=[],
189-
author="erin",
190-
updated_at="2026-02-08T10:00:00+00:00",
191-
)
192-
],
193183
}
194184
calls: list[tuple[str, str, int]] = []
195185

@@ -212,13 +202,11 @@ def fake_get_all_github_prs(
212202
"Pdf fix",
213203
"Gallery draft",
214204
"Bokeh cleanup",
215-
"Docs refresh",
216205
]
217206
assert list(monitored_prs["Repository"]) == [
218207
"streamlit/st-issues",
219208
"streamlit/streamlit-pdf",
220209
"streamlit/gallery",
221210
"streamlit/streamlit-bokeh",
222-
"streamlit/site",
223211
]
224-
assert list(monitored_prs["Draft"]) == [False, False, True, False, False]
212+
assert list(monitored_prs["Draft"]) == [False, False, True, False]

0 commit comments

Comments
 (0)