Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions pytest_mpl/summary/html.py
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ def generate_summary_html(results, results_dir, hash_library=None):

# Initialize Jinja
env = Environment(
loader=PackageLoader("pytest_mpl.summary.html"),
loader=PackageLoader("pytest_mpl.summary", "templates"),
autoescape=select_autoescape()
)

Expand Down Expand Up @@ -254,7 +254,7 @@ def generate_summary_basic_html(results, results_dir, hash_library=None):

# Initialize Jinja
env = Environment(
loader=PackageLoader("pytest_mpl.summary.html"),
loader=PackageLoader("pytest_mpl.summary", "templates"),
autoescape=select_autoescape()
)

Expand Down