Support converting a folder of files, not just individual files each time, optionally recursively
Some checks failed
CI / test (push) Successful in 36s
Lint / test (push) Failing after 28s
Trivy / test (push) Successful in 16s

This commit is contained in:
Miguel Jacq 2025-12-30 16:36:05 +11:00
parent 4d58107b22
commit f0748e98e0
Signed by: mig5
GPG key ID: 59B3F0C24135C6A9
9 changed files with 874 additions and 23 deletions

View file

@ -14,7 +14,7 @@ def test_cli_stdout_toml(capsys):
cfg_path = SAMPLES_DIR / "tom.toml"
exit_code = cli._main([str(cfg_path), "-r", "jinjaturtle"])
assert exit_code
assert exit_code == 0
captured = capsys.readouterr()
out = captured.out
@ -48,7 +48,7 @@ def test_cli_writes_output_files(tmp_path, capsys):
]
)
assert exit_code
assert exit_code == 0
assert defaults_path.is_file()
assert template_path.is_file()