D12259: tests: move Python 3.5 check higher in file
indygreg (Gregory Szorc)
phabricator at mercurial-scm.org
Wed Mar 2 15:30:57 UTC 2022
indygreg created this revision.
Herald added a reviewer: hg-reviewers.
Herald added a subscriber: mercurial-patches.
REVISION SUMMARY
Per code review comment on the changeset that introduced the Python 3.5+
checks.
REPOSITORY
rHG Mercurial
BRANCH
default
REVISION DETAIL
https://phab.mercurial-scm.org/D12259
AFFECTED FILES
tests/run-tests.py
CHANGE DETAILS
diff --git a/tests/run-tests.py b/tests/run-tests.py
--- a/tests/run-tests.py
+++ b/tests/run-tests.py
@@ -72,6 +72,13 @@
import uuid
import xml.dom.minidom as minidom
+if sys.version_info < (3, 5, 0):
+ print(
+ '%s is only supported on Python 3.5+, not %s'
+ % (sys.argv[0], '.'.join(str(v) for v in sys.version_info[:3]))
+ )
+ sys.exit(70) # EX_SOFTWARE from `man 3 sysexit`
+
WINDOWS = os.name == r'nt'
shellquote = shlex.quote
@@ -143,12 +150,6 @@
origenviron = os.environ.copy()
-if sys.version_info < (3, 5, 0):
- print(
- '%s is only supported on Python 3.5+, not %s'
- % (sys.argv[0], '.'.join(str(v) for v in sys.version_info[:3]))
- )
- sys.exit(70) # EX_SOFTWARE from `man 3 sysexit`
xrange = range # we use xrange in one place, and we'd rather not use range
To: indygreg, #hg-reviewers
Cc: mercurial-patches, mercurial-devel
More information about the Mercurial-devel
mailing list