Skip to content

Commit

Permalink
Disable some tests on Linux
Browse files Browse the repository at this point in the history
  • Loading branch information
slozier committed Nov 8, 2024
1 parent da7d8a3 commit 1e616f7
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions Tests/test_io_stdlib.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,27 @@ def load_tests(loader, standard_tests, pattern):
test.test_io.PyMiscIOTest('test_pickling'), # AssertionError: TypeError not raised by _dumps
test.test_io.PyMiscIOTest('test_warn_on_dealloc'), # AssertionError: ResourceWarning not triggered
test.test_io.PyMiscIOTest('test_warn_on_dealloc_fd'), # AssertionError: ResourceWarning not triggered

test.test_io.CMiscIOTest('test_nonblock_pipe_write_bigbuf'), # AttributeError: 'module' object has no attribute 'fcntl'
test.test_io.CMiscIOTest('test_nonblock_pipe_write_smallbuf'), # AttributeError: 'module' object has no attribute 'fcntl'
test.test_io.PyMiscIOTest('test_nonblock_pipe_write_bigbuf'), # AttributeError: 'module' object has no attribute 'fcntl'
test.test_io.PyMiscIOTest('test_nonblock_pipe_write_smallbuf'), # AttributeError: 'module' object has no attribute 'fcntl'
test.test_io.CSignalsTest('test_interrupted_read_retry_buffered'), # AttributeError: 'module' object has no attribute 'SIGALRM'
test.test_io.CSignalsTest('test_interrupted_read_retry_text'), # AttributeError: 'module' object has no attribute 'SIGALRM'
test.test_io.CSignalsTest('test_interrupted_write_buffered'), # AttributeError: 'module' object has no attribute 'SIGALRM'
test.test_io.CSignalsTest('test_interrupted_write_retry_buffered'), # AttributeError: 'module' object has no attribute 'SIGALRM'
test.test_io.CSignalsTest('test_interrupted_write_retry_text'), # AttributeError: 'module' object has no attribute 'SIGALRM'
test.test_io.CSignalsTest('test_interrupted_write_text'), # AttributeError: 'module' object has no attribute 'SIGALRM'
test.test_io.CSignalsTest('test_interrupted_write_unbuffered'), # AttributeError: 'module' object has no attribute 'SIGALRM'
test.test_io.CSignalsTest('test_reentrant_write_buffered'), # AttributeError: 'module' object has no attribute 'SIGALRM'
test.test_io.CSignalsTest('test_reentrant_write_text'), # AttributeError: 'module' object has no attribute 'SIGALRM'
test.test_io.PySignalsTest('test_interrupted_read_retry_buffered'), # AttributeError: 'module' object has no attribute 'SIGALRM'
test.test_io.PySignalsTest('test_interrupted_read_retry_text'), # AttributeError: 'module' object has no attribute 'SIGALRM'
test.test_io.PySignalsTest('test_interrupted_write_buffered'), # AttributeError: 'module' object has no attribute 'SIGALRM'
test.test_io.PySignalsTest('test_interrupted_write_retry_buffered'), # AttributeError: 'module' object has no attribute 'SIGALRM'
test.test_io.PySignalsTest('test_interrupted_write_retry_text'), # AttributeError: 'module' object has no attribute 'SIGALRM'
test.test_io.PySignalsTest('test_interrupted_write_text'), # AttributeError: 'module' object has no attribute 'SIGALRM'
test.test_io.PySignalsTest('test_interrupted_write_unbuffered'), # AttributeError: 'module' object has no attribute 'SIGALRM'
]

skip_tests = [
Expand Down

0 comments on commit 1e616f7

Please sign in to comment.