Skip to content

Commit f532df4

Browse files
Pass env
1 parent d983d3a commit f532df4

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

jeeves.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
import os
2+
13
from sh import git, pytest, tee
24

35

@@ -13,9 +15,9 @@ def ci():
1315
_in=pytest(
1416
'tests',
1517
junitxml='tests/coverage/pytest.xml',
16-
# cov_report=['', 'html:tests/coverage/html'],
1718
cov='yaml_ld',
1819
_piped=True,
1920
_ok_code={0, 1},
21+
_env=os.environ,
2022
),
2123
)

0 commit comments

Comments
 (0)