From 655bac09dbd6f9e8266b5e5e2352cd1264ce5e44 Mon Sep 17 00:00:00 2001 From: David Skoog Date: Fri, 12 Dec 2025 17:00:49 -0500 Subject: [PATCH 1/2] Fix Flake8 error Missing blank line in streamz/plugins.py --- streamz/plugins.py | 1 + 1 file changed, 1 insertion(+) diff --git a/streamz/plugins.py b/streamz/plugins.py index e27ffc9d..fa1a6add 100644 --- a/streamz/plugins.py +++ b/streamz/plugins.py @@ -19,6 +19,7 @@ def get_entry_point(eps, group): else: return eps.get(group, []) + def load_plugins(cls): eps = importlib.metadata.entry_points() From 4ff31a41d61c233334a6f371849718a7e6a9e879 Mon Sep 17 00:00:00 2001 From: David Skoog Date: Fri, 12 Dec 2025 17:55:32 -0500 Subject: [PATCH 2/2] Update conftest.py pytest_ignore_collect's path param was deprecated in pytest 7 and removed in pytest 9. The 3.10+ test environments pull pytest 9. 3.9 only pulls pytest 8 so that would still pass. --- conftest.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/conftest.py b/conftest.py index 35e83a4e..ecdfbc1a 100644 --- a/conftest.py +++ b/conftest.py @@ -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