Skip to content

Commit 579e6ff

Browse files
committed
Skip tests on windows
1 parent ac2cb38 commit 579e6ff

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

ipyparallel/tests/test_magics.py

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -512,20 +512,38 @@ def _sigalarm(sig, frame):
512512
)
513513
assert 'Exiting...' not in io.stdout
514514

515+
@pytest.mark.skipif(
516+
sys.platform.startswith("win"), reason="Signal tests don't pass on Windows yet"
517+
)
515518
def test_cellpx_keyboard_interrupt_default(self):
516519
self.cellpx_keyboard_interrupt_test_helper()
517520

521+
@pytest.mark.skipif(
522+
sys.platform.startswith("win"), reason="Signal tests don't pass on Windows yet"
523+
)
518524
def test_cellpx_keyboard_interrupt_SIGINT(self):
519525
self.cellpx_keyboard_interrupt_test_helper("SIGINT")
520526

527+
@pytest.mark.skipif(
528+
sys.platform.startswith("win"), reason="Signal tests don't pass on Windows yet"
529+
)
521530
def test_cellpx_keyboard_interrupt_signal_2(self):
522531
self.cellpx_keyboard_interrupt_test_helper("2")
523532

533+
@pytest.mark.skipif(
534+
sys.platform.startswith("win"), reason="Signal tests don't pass on Windows yet"
535+
)
524536
def test_cellpx_keyboard_interrupt_signal_0(self):
525537
self.cellpx_keyboard_interrupt_test_helper("0")
526538

539+
@pytest.mark.skipif(
540+
sys.platform.startswith("win"), reason="Signal tests don't pass on Windows yet"
541+
)
527542
def test_cellpx_keyboard_interrupt_SIGKILL(self):
528543
self.cellpx_keyboard_interrupt_test_helper("SIGKILL")
529544

545+
@pytest.mark.skipif(
546+
sys.platform.startswith("win"), reason="Signal tests don't pass on Windows yet"
547+
)
530548
def test_cellpx_keyboard_interrupt_signal_9(self):
531549
self.cellpx_keyboard_interrupt_test_helper("9")

0 commit comments

Comments
 (0)