Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ def pytest_runtest_setup(item):
pytest.skip("need --runslow option to run")


def pytest_ignore_collect(path, config):
if 'run_test.py' in str(path):
def pytest_ignore_collect(collection_path, config):
if 'run_test.py' in str(collection_path):
return True
1 change: 1 addition & 0 deletions streamz/plugins.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ def get_entry_point(eps, group):
else:
return eps.get(group, [])


def load_plugins(cls):
eps = importlib.metadata.entry_points()

Expand Down
Loading