diff --git a/tests/hghave.py b/tests/hghave.py index 5b3513177f2b449ff49f0879d5cf9d81e69a43a6_dGVzdHMvaGdoYXZlLnB5..94c0c36299b1a0c4596fbf5655ce9d4580267158_dGVzdHMvaGdoYXZlLnB5 100644 --- a/tests/hghave.py +++ b/tests/hghave.py @@ -863,7 +863,10 @@ @check("py3exe", "a Python 3.x interpreter is available") def has_python3exe(): - return matchoutput('python3 -V', br'^Python 3.(5|6|7|8|9)') + py = 'python3' + if os.name == 'nt': + py = 'py -3' + return matchoutput('%s -V' % py, br'^Python 3.(5|6|7|8|9)') @check("pure", "running with pure Python code")