Skip to content

Commit 573554d

Browse files
more windows hacks
1 parent e64547b commit 573554d

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
strategy:
2020
fail-fast: false
2121
matrix:
22-
os: [windows-latest, ubuntu-latest, osx-latest]
22+
os: [windows-latest, ubuntu-latest] #, osx-latest]
2323
python: ["3.7","3.8","3.10","3.11", "pypy-3.7", "pypy-3.8"]
2424

2525
steps:

src/execnet/rsync.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,6 @@ def send(self, raises: bool = True) -> None:
124124
mch = MultiChannel(list(self._channels))
125125
rq = mch.make_receive_queue(endmarker=(None, None))
126126

127-
# send modified file to clients
128127
commands: dict[str | None, Callable] = {
129128
None: self._end_of_channel,
130129
"links": self._process_link,

testing/test_termination.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,8 @@ def test_termination_on_remote_channel_receive(monkeypatch, makegateway):
6868
gw._group.terminate()
6969
command = ["ps", "-p", str(pid)]
7070
output = subprocess.run(command, capture_output=True, text=True)
71-
assert str(pid) not in output.stdout, output
71+
print(output.stdout)
72+
assert str(pid) not in output.stdout
7273

7374

7475
def test_close_initiating_remote_no_error(testdir, anypython):

0 commit comments

Comments
 (0)