From ea5a1a45d32360b2e29afc6b4e99eee1a6c79413 Mon Sep 17 00:00:00 2001 From: lhparker1 Date: Mon, 27 Jul 2026 13:25:56 -0700 Subject: [PATCH] feat: use ASTRA article theme for MyST reports --- src/lightcone/cli/commands.py | 2 +- tests/test_cli.py | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) 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()