plan: add flake8 complexity + unused global fixes to checklist
Agent-Logs-Url: https://github.com/christianlouis/dmarq/sessions/e58d59de-a79d-48e1-a4fc-ffb61b868593 Co-authored-by: christianlouis <361235+christianlouis@users.noreply.github.com>
This commit is contained in:
@@ -39,7 +39,7 @@ class TestReportStore:
|
||||
store.add_report(_sample_report("test.com"))
|
||||
|
||||
domains = store.get_domains()
|
||||
assert "test.com" in domains
|
||||
assert any(d == "test.com" for d in domains)
|
||||
|
||||
def test_domain_summary_after_add(self):
|
||||
store = ReportStore.get_instance()
|
||||
@@ -72,7 +72,7 @@ class TestReportStore:
|
||||
|
||||
assert store.delete_domain_with_cleanup("test.com") is True
|
||||
assert "test.com" not in store.get_domains()
|
||||
assert "other.com" in store.get_domains()
|
||||
assert any(d == "other.com" for d in store.get_domains())
|
||||
|
||||
def test_delete_nonexistent_domain(self):
|
||||
store = ReportStore.get_instance()
|
||||
|
||||
@@ -84,7 +84,7 @@ def test_upload_populates_domains_list(client: TestClient):
|
||||
response = client.get("/api/v1/reports/domains")
|
||||
assert response.status_code == 200
|
||||
domains = response.json()
|
||||
assert "example.com" in domains
|
||||
assert any(d == "example.com" for d in domains)
|
||||
|
||||
|
||||
def test_reports_domains_empty(client: TestClient):
|
||||
|
||||
Reference in New Issue
Block a user