Skip to content

Commit aaf6f27

Browse files
authored
Merge pull request #850 from OZI-Project/fix-template-paths
chore: clean up coverage
2 parents b86972e + 50742d5 commit aaf6f27

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ozi_core/render.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ def find_user_template(target: str, file: str, fix: str) -> str | None:
4747
"""
4848
fp = Path(target, 'templates', fix, file)
4949
if fp.exists():
50-
user_template = str(fp.relative_to(Path(target)))
50+
user_template = str(fp.relative_to(Path(target))) # pragma: defer to E2E
5151
else:
5252
TAP.ok(_('term-tap-user-template-not-found'), skip=True, template=str(fp))
5353
user_template = None

0 commit comments

Comments
 (0)