Skip to content

Commit

Permalink
test: fix pytest compat (#5317)
Browse files Browse the repository at this point in the history
seems pytest_report_header has changed with pytest incompatible but we
don't need it anyway so we can just leave it out.
  • Loading branch information
hpk42 authored Mar 4, 2024
1 parent c96139b commit 7cc2a09
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/src/deltachat/testplugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ def pytest_runtest_teardown(self, item):
deltachat.register_global_plugin(la)


def pytest_report_header(config, startdir):
def pytest_report_header(config):
info = get_core_info()
summary = [
"Deltachat core={} sqlite={} journal_mode={}".format(
Expand Down

0 comments on commit 7cc2a09

Please sign in to comment.