Skip to content

Commit

Permalink
correct mistake in pytest_configure :see-no-evil:
Browse files Browse the repository at this point in the history
  • Loading branch information
samuelcolvin committed Jan 22, 2023
1 parent e8ec1cd commit 42fc956
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pytest_pretty/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

SummaryStats = tuple[list[tuple[str, dict[str, bool]]], str]

__version__ = '1'
__version__ = '1.0.1'
start_time = 0
end_time = 0
console = Console()
Expand Down Expand Up @@ -91,7 +91,7 @@ def short_test_summary(self) -> None:
console.print(table)


@pytest.mark.trylast
@pytest.hookimpl(trylast=True)
def pytest_configure(config):
# Get the standard terminal reporter plugin and replace it with our
standard_reporter = config.pluginmanager.getplugin('terminalreporter')
Expand Down

0 comments on commit 42fc956

Please sign in to comment.