diff --git a/src/lightcone/cli/commands.py b/src/lightcone/cli/commands.py index 1b9b792..1154db9 100644 --- a/src/lightcone/cli/commands.py +++ b/src/lightcone/cli/commands.py @@ -406,7 +406,7 @@ def _create_report_template(directory: Path) -> None: toc: - file: index.md site: - template: book-theme + template: https://github.com/LightconeResearch/astra-article-theme.git """ diff --git a/tests/test_cli.py b/tests/test_cli.py index 3c327cb..543938d 100644 --- a/tests/test_cli.py +++ b/tests/test_cli.py @@ -82,6 +82,7 @@ def test_init_creates_report_template(runner: CliRunner, tmp_path: Path) -> None myst_yml = (project / "myst.yml").read_text() assert "mystra.mjs" in myst_yml + assert "https://github.com/LightconeResearch/astra-article-theme.git" in myst_yml assert "index.md" in myst_yml index_md = (project / "index.md").read_text()