feat: add linting and testing commands to Makefile; enhance CLI with new features and tests

This commit is contained in:
Felix Rudat
2026-02-04 10:38:33 +01:00
parent f1eb64c102
commit e158946211
7 changed files with 272 additions and 27 deletions
+2 -6
View File
@@ -7,18 +7,14 @@ class _DummyPlanka:
"""Stub for plankapy.v1.Planka to satisfy root __init__.py"""
def __init__(self, *args, **kwargs):
raise NotImplementedError(
"plankapy.v1 is not available in this build; use plankapy.v2"
)
raise NotImplementedError("plankapy.v1 is not available in this build; use plankapy.v2")
class _DummyPasswordAuth:
"""Stub for plankapy.v1.PasswordAuth to satisfy root __init__.py"""
def __init__(self, *args, **kwargs):
raise NotImplementedError(
"plankapy.v1 is not available in this build; use plankapy.v2"
)
raise NotImplementedError("plankapy.v1 is not available in this build; use plankapy.v2")
# Create a dummy v1 module to satisfy plankapy's root __init__.py