Coverage for tests / test_select_gen.py: 100%

10 statements  

« prev     ^ index     » next       coverage.py v7.13.0, created at 2026-01-06 21:09 +0000

1import os 1abcdefghi

2import subprocess 1abcdefghi

3import sys 1abcdefghi

4from pathlib import Path 1abcdefghi

5 

6root_path = Path(__file__).parent.parent 1abcdefghi

7 

8 

9def test_select_gen() -> None: 1abcdefghi

10 env = os.environ.copy() 1jklmnopqr

11 env["CHECK_JINJA"] = "1" 1jklmnopqr

12 result = subprocess.run( 1jklmnopqr

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) 1jklmnopqr