bpo-33352: Skip test_regrtest test if rt.bat does not exist (GH-6654) (#6656)
https://github.com/python/cpython/commit/8075868f19967f291f123f17962a453b38d... commit: 8075868f19967f291f123f17962a453b38dec8d2 branch: 3.7 author: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> committer: Victor Stinner <vstinner@redhat.com> date: 2018-04-30T22:36:49+02:00 summary: bpo-33352: Skip test_regrtest test if rt.bat does not exist (GH-6654) (#6656) (cherry picked from commit c3b7a6dfb9c7e69093c9fe78ab587e14743e5152) Co-authored-by: Andrés Delfino <adelfino@gmail.com> files: M Lib/test/test_regrtest.py diff --git a/Lib/test/test_regrtest.py b/Lib/test/test_regrtest.py index 8364767b3a30..c40b5182a863 100644 --- a/Lib/test/test_regrtest.py +++ b/Lib/test/test_regrtest.py @@ -594,6 +594,8 @@ def test_tools_buildbot_test(self): def test_pcbuild_rt(self): # PCbuild\rt.bat script = os.path.join(ROOT_DIR, r'PCbuild\rt.bat') + if not os.path.isfile(script): + self.skipTest(f'File "{script}" does not exist') rt_args = ["-q"] # Quick, don't run tests twice if platform.architecture()[0] == '64bit': rt_args.append('-x64') # 64-bit build
participants (1)
-
Victor Stinner