Coverage for tests / test_select_gen.py: 100%
10 statements
« prev ^ index » next coverage.py v7.13.0, created at 2026-06-10 09:40 +0000
« prev ^ index » next coverage.py v7.13.0, created at 2026-06-10 09:40 +0000
1import os 1abcdefgh
2import subprocess 1abcdefgh
3import sys 1abcdefgh
4from pathlib import Path 1abcdefgh
6root_path = Path(__file__).parent.parent 1abcdefgh
9def test_select_gen() -> None: 1abcdefgh
10 env = os.environ.copy() 1ijklmnop
11 env["CHECK_JINJA"] = "1" 1ijklmnop
12 result = subprocess.run( 1ijklmnop
13 [sys.executable, Path("scripts") / "generate_select.py"],
14 env=env,
15 check=True,
16 cwd=root_path,
17 capture_output=True,
18 )
19 print(result.stdout) 1ijklmnop