Skip to content

Commit

Permalink
tests: re-enable test_unbuffered_stdio on CI
Browse files Browse the repository at this point in the history
The contemporary versions of pytest-xdist and execnet are said to have
sorted out the issue with tests sometimes not running in the main
thread, so we should be able to run this test on our CI now.
  • Loading branch information
rokm committed May 18, 2024
1 parent 2806e90 commit 22e928e
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions tests/functional/test_unbuffered_stdio.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,6 @@
from PyInstaller.compat import is_win


@pytest.mark.skipif(
os.environ.get('CI', 'false').lower() == 'true',
reason="The test does not support CI (pytest-xdist sometimes runs it in secondary thread)."
)
@pytest.mark.parametrize('stream_mode', ['binary', 'text'])
@pytest.mark.parametrize('output_stream', ['stdout', 'stderr'])
def test_unbuffered_stdio(tmp_path, output_stream, stream_mode, pyi_builder_spec):
Expand Down

0 comments on commit 22e928e

Please sign in to comment.