Skip to content

Commit efebba6

Browse files
committed
restore code as is on current main
1 parent cecbb4a commit efebba6

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

tests/test_select_gen.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,11 @@
1010

1111
@needs_py39
1212
def test_select_gen() -> None:
13+
env = os.environ.copy()
14+
env["CHECK_JINJA"] = "1"
1315
result = subprocess.run(
1416
[sys.executable, Path("scripts") / "generate_select.py"],
15-
env={**os.environ, "CHECK_JINJA": "1"},
17+
env=env,
1618
check=True,
1719
cwd=root_path,
1820
capture_output=True,

0 commit comments

Comments
 (0)