File tree Expand file tree Collapse file tree 1 file changed +18
-0
lines changed Expand file tree Collapse file tree 1 file changed +18
-0
lines changed Original file line number Diff line number Diff line change @@ -512,20 +512,38 @@ def _sigalarm(sig, frame):
512
512
)
513
513
assert 'Exiting...' not in io .stdout
514
514
515
+ @pytest .mark .skipif (
516
+ sys .platform .startswith ("win" ), reason = "Signal tests don't pass on Windows yet"
517
+ )
515
518
def test_cellpx_keyboard_interrupt_default (self ):
516
519
self .cellpx_keyboard_interrupt_test_helper ()
517
520
521
+ @pytest .mark .skipif (
522
+ sys .platform .startswith ("win" ), reason = "Signal tests don't pass on Windows yet"
523
+ )
518
524
def test_cellpx_keyboard_interrupt_SIGINT (self ):
519
525
self .cellpx_keyboard_interrupt_test_helper ("SIGINT" )
520
526
527
+ @pytest .mark .skipif (
528
+ sys .platform .startswith ("win" ), reason = "Signal tests don't pass on Windows yet"
529
+ )
521
530
def test_cellpx_keyboard_interrupt_signal_2 (self ):
522
531
self .cellpx_keyboard_interrupt_test_helper ("2" )
523
532
533
+ @pytest .mark .skipif (
534
+ sys .platform .startswith ("win" ), reason = "Signal tests don't pass on Windows yet"
535
+ )
524
536
def test_cellpx_keyboard_interrupt_signal_0 (self ):
525
537
self .cellpx_keyboard_interrupt_test_helper ("0" )
526
538
539
+ @pytest .mark .skipif (
540
+ sys .platform .startswith ("win" ), reason = "Signal tests don't pass on Windows yet"
541
+ )
527
542
def test_cellpx_keyboard_interrupt_SIGKILL (self ):
528
543
self .cellpx_keyboard_interrupt_test_helper ("SIGKILL" )
529
544
545
+ @pytest .mark .skipif (
546
+ sys .platform .startswith ("win" ), reason = "Signal tests don't pass on Windows yet"
547
+ )
530
548
def test_cellpx_keyboard_interrupt_signal_9 (self ):
531
549
self .cellpx_keyboard_interrupt_test_helper ("9" )
You can’t perform that action at this time.
0 commit comments