From 552c3f69f15edd403c97b097700ab744f664f0a3 Mon Sep 17 00:00:00 2001 From: Christoph Reiter Date: Sun, 3 Sep 2023 18:04:00 +0200 Subject: [PATCH] Revert "tests: skip a test that fails with new Python 3.11 from MSYS2" This reverts commit 68dce66bf9a2bcb3d23c291beb2354225a74b954. The upstream issues https://github.com/msys2-contrib/cpython-mingw/issues/141 has been fixed now. --- unittests/windowstests.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/unittests/windowstests.py b/unittests/windowstests.py index c201953276cc..37e92996d97a 100644 --- a/unittests/windowstests.py +++ b/unittests/windowstests.py @@ -462,9 +462,6 @@ 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()