Bump min execnet to 2.1.0

This version adds typing which we want to utilize.
This commit is contained in:
Ran Benita
2024-04-05 21:46:41 +03:00
parent dd067e4f86
commit e9084f2d73
5 changed files with 9 additions and 6 deletions

View File

@@ -102,14 +102,14 @@ class TestNodeManagerPopen:
def waitclose(self):
pass
gw.remote_exec = pseudoexec
gw.remote_exec = pseudoexec # type: ignore[assignment]
notifications = []
for gw in hm.group:
hm.rsync(gw, source, notify=lambda *args: notifications.append(args))
assert not notifications
hm.teardown_nodes()
assert not len(hm.group)
assert "sys.path.insert" in gw.remote_exec.args[0]
assert "sys.path.insert" in gw.remote_exec.args[0] # type: ignore[attr-defined]
def test_rsync_popen_with_path(
self, config, source: Path, dest: Path, workercontroller