We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2a6f9ee commit 843178fCopy full SHA for 843178f
packages/testing/src/execution_testing/cli/pytest_commands/plugins/consume/consume.py
@@ -533,7 +533,10 @@ def pytest_configure(config: pytest.Config) -> None: # noqa: D103
533
and config.getoption("htmlpath") is None
534
):
535
# generate an html report by default, unless explicitly disabled
536
- config.option.htmlpath = Path(default_html_report_file_path())
+ config.option.htmlpath = (
537
+ config.fixtures_source.path # type: ignore[attr-defined]
538
+ / default_html_report_file_path()
539
+ )
540
541
542
def pytest_html_report_title(report: Any) -> None:
0 commit comments