Skip to content

Commit

Permalink
Remove unused arguments from pytest hook to indirectly address warnings
Browse files Browse the repository at this point in the history
The warnings are about the use of the deprecated `startdir` argument
  • Loading branch information
lbianchi-lbl committed Sep 6, 2024
1 parent c305efe commit d27dbde
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion idaes_examples/notebooks/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -175,6 +175,6 @@ def pytest_collection_modifyitems(session, config, items: list):


@pytest.hookimpl(trylast=True)
def pytest_report_collectionfinish(config, start_path, startdir, items):
def pytest_report_collectionfinish(config):
print_hook(config, "pytest_report_collectionfinish")
return NotebookPrep.report()

0 comments on commit d27dbde

Please sign in to comment.