From 9bc6c9e0b95043c4cb39b518035d86570df30989 Mon Sep 17 00:00:00 2001 From: Marcus Lindqvist Date: Tue, 20 Jan 2026 15:40:00 +0000 Subject: [PATCH] Add placeholder fleet status check --- harborwatch/checks.py | 6 ++++++ tests/test_checks.py | 5 +++++ 2 files changed, 11 insertions(+) create mode 100644 harborwatch/checks.py create mode 100644 tests/test_checks.py diff --git a/harborwatch/checks.py b/harborwatch/checks.py new file mode 100644 index 0000000..70512e4 --- /dev/null +++ b/harborwatch/checks.py @@ -0,0 +1,6 @@ +"""Fleet status checks.""" + + +def fleet_status(service_name): + # Placeholder until the real deploy API client is wired up. + return f"{service_name}: status check not yet implemented" diff --git a/tests/test_checks.py b/tests/test_checks.py new file mode 100644 index 0000000..01d87ad --- /dev/null +++ b/tests/test_checks.py @@ -0,0 +1,5 @@ +from harborwatch.checks import fleet_status + + +def test_placeholder_status(): + assert "not yet implemented" in fleet_status("routeforge")