We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6405fee commit c3b7a6dCopy full SHA for c3b7a6d
Lib/test/test_regrtest.py
@@ -594,6 +594,8 @@ def test_tools_buildbot_test(self):
594
def test_pcbuild_rt(self):
595
# PCbuild\rt.bat
596
script = os.path.join(ROOT_DIR, r'PCbuild\rt.bat')
597
+ if not os.path.isfile(script):
598
+ self.skipTest(f'File "{script}" does not exist')
599
rt_args = ["-q"] # Quick, don't run tests twice
600
if platform.architecture()[0] == '64bit':
601
rt_args.append('-x64') # 64-bit build
0 commit comments