test-cleanup: fix 21 failures, prune stale tests, consolidate fragmented files (#66)
Some checks are pending
CI / build (push) Waiting to run

* test-cleanup: fix 21 failures, prune stale tests, consolidate fragmented files

* test-cleanup: remove permanently-skipped M4/perf tests, fix pydantic ConfigDict warning

* docs: update changelog and release notes for test-cleanup changes

* ci: fix editorial governance workflow stale test file reference
This commit is contained in:
mwisnowski 2026-03-31 17:38:08 -07:00 committed by GitHub
parent 32157179f9
commit 46637cf27f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
34 changed files with 5329 additions and 2202 deletions

View file

@ -426,7 +426,8 @@ Counterspell"""
assert r3.status_code == 200
export_data = r3.json()
assert export_data["ok"] is True
assert "permalink" in export_data
assert "state" in export_data
assert "exclude_cards" in export_data["state"]
# Verify excluded cards are preserved
@ -606,7 +607,8 @@ def test_exclude_cards_json_roundtrip(client):
assert r3.status_code == 200
permalink_data = r3.json()
assert permalink_data["ok"] is True
assert "permalink" in permalink_data
assert "state" in permalink_data
assert "exclude_cards" in permalink_data["state"]
exported_excludes = permalink_data["state"]["exclude_cards"]
@ -630,7 +632,8 @@ def test_exclude_cards_json_roundtrip(client):
assert r5.status_code == 200
reimported_data = r5.json()
assert reimported_data["ok"] is True
assert "permalink" in reimported_data
assert "state" in reimported_data
assert "exclude_cards" in reimported_data["state"]
# Should be identical to the original export