style: ruff format test_readme.py

This commit is contained in:
Brian Krabach
2026-03-31 17:39:59 -07:00
parent fc9376a69a
commit 80a04cb2cc
+4 -2
View File
@@ -24,7 +24,9 @@ def test_readme_service_management_has_all_7_subcommands():
"muxplex service logs", "muxplex service logs",
] ]
for cmd in subcommands: for cmd in subcommands:
assert cmd in README, f"README must mention '{cmd}' in Service management section" assert cmd in README, (
f"README must mention '{cmd}' in Service management section"
)
def test_readme_explains_settings_json_no_flags(): def test_readme_explains_settings_json_no_flags():
@@ -58,6 +60,6 @@ def test_readme_no_plain_install_service_in_install_sections():
if not stripped.startswith("#"): if not stripped.startswith("#"):
# This is an active command — it should NOT be 'muxplex install-service' # This is an active command — it should NOT be 'muxplex install-service'
assert "muxplex install-service" not in stripped, ( assert "muxplex install-service" not in stripped, (
f"Line {i+1} has active 'muxplex install-service' command in code block: {line!r}. " f"Line {i + 1} has active 'muxplex install-service' command in code block: {line!r}. "
"Update to use 'muxplex service install' instead." "Update to use 'muxplex service install' instead."
) )