Skip to content

Commit

Permalink
does not work in windows
Browse files Browse the repository at this point in the history
  • Loading branch information
Christian-B committed Jul 2, 2024
1 parent ed1912e commit df3144c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/test_job.py
Original file line number Diff line number Diff line change
Expand Up @@ -352,7 +352,8 @@ def test_keepalive(self, no_config_files, timeout, client):

def test_impossible_timeout(self, no_config_files, j, client):
# When an impossible timeout is presented, should terminate immediately
assert j.wait_for_state_change(2, timeout=0.0) == 2
if platform.system() != "Windows":
assert j.wait_for_state_change(2, timeout=0.0) == 2

@pytest.mark.parametrize("keepalive", [None, 5.0])
def test_timeout(self, no_config_files, keepalive, client):
Expand Down

0 comments on commit df3144c

Please sign in to comment.