Skip to content

Commit

Permalink
hookwrapper
Browse files Browse the repository at this point in the history
  • Loading branch information
toshikurauchi committed Mar 16, 2024
1 parent 3e649ad commit 189a2a4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setuptools.setup(
name="pytest-insper",
version="0.1.1",
version="0.1.2",
author="Andrew Kurauchi",
author_email="[email protected]",
description="Pytest plugin for courses at Insper",
Expand Down
2 changes: 1 addition & 1 deletion src/pytest_insper/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ def pytest_collection_modifyitems(session, config, items):
items[:] = [item for sublist in sorted_items for item in sublist]


@pytest.hookimpl(wrapper=True)
@pytest.hookimpl(hookwrapper=True)
def pytest_pyfunc_call(pyfuncitem):
# Execute test
res = yield
Expand Down

0 comments on commit 189a2a4

Please sign in to comment.