vars: implement listing all vars

This commit is contained in:
DavHau
2024-09-01 15:22:29 +02:00
parent 19bbc9b0ae
commit 6f4827bde4
7 changed files with 69 additions and 81 deletions

View File

@@ -114,7 +114,10 @@ def test_all_dataclasses() -> None:
# Excludes:
# - API includes Type Generic wrappers, that are not known in the init file.
excludes = ["api/__init__.py"]
excludes = [
"api/__init__.py",
"vars/_types.py",
]
cli_path = Path("clan_cli").resolve()
dataclasses = find_dataclasses_in_directory(cli_path, excludes)