Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

tests: skip a test that fails with new Python 3.11 from MSYS2 #12049

Merged
merged 1 commit into from
Jul 31, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions unittests/windowstests.py
Original file line number Diff line number Diff line change
Expand Up @@ -462,6 +462,9 @@ def test_non_utf8_fails(self):

@unittest.skipIf(is_cygwin(), "Needs visual studio")
def test_vsenv_option(self):
if mesonbuild.environment.detect_msys2_arch():
# https://github.com/msys2-contrib/cpython-mingw/issues/141
raise SkipTest('mingw python fails with /bin being removed from PATH')
if self.backend is not Backend.ninja:
raise SkipTest('Only ninja backend is valid for test')
env = os.environ.copy()
Expand Down