Files
clan-core/pkgs/clan-cli
DavHau 7b61a668e9 vars: refactor: use Machine objects instead of base_dir strings
Replace base_dir string parameters with Machine objects throughout the vars
module for better type safety and consistency.
2025-08-20 11:59:18 +07:00
..
2024-08-02 18:56:53 +02:00
2025-07-13 15:53:10 +02:00
2025-07-17 15:23:08 +02:00
2025-08-19 14:47:12 +02:00
2025-08-12 13:19:11 +02:00
2025-08-19 15:28:25 +02:00
2025-08-08 15:28:37 +10:00

clan-cli

The Clan CLI contains the command line interface.

Hacking on the CLI

We recommend setting up direnv to load the development with Nix. If you do not have it set up you can also use nix develop directly like this:

use flake .#clan-cli --builders ''

After you can use the local bin wrapper to test things in the CLI:

./bin/clan

Run locally single-threaded for debugging

By default tests run in parallel using pytest-parallel. pytest-parallel however breaks breakpoint(). To disable it, use this:

pytest -n0 -s

You can also run a single test like this:

pytest -n0 -s tests/test_secrets_cli.py::test_users

Run all checks in a sandbox

nix build .#checks.x86_64-linux.clan-pytest-with-core
nix build .#checks.x86_64-linux.clan-pytest-without-core