Skip to content

Commit

Permalink
Remove unused session arg of pytest_collection_modifyitems (#252)
Browse files Browse the repository at this point in the history
  • Loading branch information
hukkinj1 committed May 3, 2020
1 parent 57bc267 commit a13d6e8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pytest_randomly.py
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ def pytest_runtest_teardown(item):
_reseed(item.config, 1)


def pytest_collection_modifyitems(session, config, items):
def pytest_collection_modifyitems(config, items):
if not config.getoption("randomly_reorganize"):
return

Expand Down

0 comments on commit a13d6e8

Please sign in to comment.