[issue33352] [EASY] Windows: test_regrtest fails on installed Python

2018-04-30 Thread STINNER Victor
Change by STINNER Victor : -- resolution: -> fixed ___ Python tracker ___ ___

[issue33352] [EASY] Windows: test_regrtest fails on installed Python

2018-04-30 Thread STINNER Victor
STINNER Victor added the comment: I'm not sure that Python 3.6. In case of doubt, I prefer to skip it. The bug has been fixed in Python 3.7 and master. Thanks Andrés Delfino for your nice contribution! -- stage: patch review -> resolved status: open -> closed

[issue33352] [EASY] Windows: test_regrtest fails on installed Python

2018-04-30 Thread STINNER Victor
STINNER Victor added the comment: New changeset 8075868f19967f291f123f17962a453b38dec8d2 by Victor Stinner (Miss Islington (bot)) in branch '3.7': bpo-33352: Skip test_regrtest test if rt.bat does not exist (GH-6654) (#6656)

[issue33352] [EASY] Windows: test_regrtest fails on installed Python

2018-04-30 Thread miss-islington
Change by miss-islington : -- pull_requests: +6352 ___ Python tracker ___

[issue33352] [EASY] Windows: test_regrtest fails on installed Python

2018-04-30 Thread STINNER Victor
STINNER Victor added the comment: New changeset c3b7a6dfb9c7e69093c9fe78ab587e14743e5152 by Victor Stinner (Andrés Delfino) in branch 'master': bpo-33352: Skip test_regrtest test if rt.bat does not exist (GH-6654)

[issue33352] [EASY] Windows: test_regrtest fails on installed Python

2018-04-30 Thread Andrés Delfino
Change by Andrés Delfino : -- keywords: +patch pull_requests: +6350 stage: needs patch -> patch review ___ Python tracker ___

[issue33352] [EASY] Windows: test_regrtest fails on installed Python

2018-04-30 Thread STINNER Victor
STINNER Victor added the comment: The fix is simple, skip the test if the script doesn't exist at: def test_pcbuild_rt(self): # PCbuild\rt.bat script = os.path.join(ROOT_DIR, r'PCbuild\rt.bat') -- keywords: +easy title: Windows: test_regrtest