##// END OF EJS Templates
py3: conditionalize the python version in test-install.t
Matt Harbison -
r41010:e1f759f1 default
parent child Browse files
Show More
@@ -2,7 +2,8 b' hg debuginstall'
2 2 $ hg debuginstall
3 3 checking encoding (ascii)...
4 4 checking Python executable (*) (glob)
5 checking Python version (2.*) (glob)
5 checking Python version (2.*) (glob) (no-py3 !)
6 checking Python version (3.*) (glob) (py3 !)
6 7 checking Python lib (*lib*)... (glob)
7 8 checking Python security support (*) (glob)
8 9 TLS 1.2 not supported by Python install; network connections lack modern security (?)
@@ -57,7 +58,8 b' hg debuginstall with no username'
57 58 $ HGUSER= hg debuginstall
58 59 checking encoding (ascii)...
59 60 checking Python executable (*) (glob)
60 checking Python version (2.*) (glob)
61 checking Python version (2.*) (glob) (no-py3 !)
62 checking Python version (3.*) (glob) (py3 !)
61 63 checking Python lib (*lib*)... (glob)
62 64 checking Python security support (*) (glob)
63 65 TLS 1.2 not supported by Python install; network connections lack modern security (?)
@@ -101,7 +103,8 b' path variables are expanded (~ is the sa'
101 103 $ HGEDITOR="~/tools/testeditor.exe" hg debuginstall
102 104 checking encoding (ascii)...
103 105 checking Python executable (*) (glob)
104 checking Python version (*) (glob)
106 checking Python version (2.*) (glob) (no-py3 !)
107 checking Python version (3.*) (glob) (py3 !)
105 108 checking Python lib (*lib*)... (glob)
106 109 checking Python security support (*) (glob)
107 110 TLS 1.2 not supported by Python install; network connections lack modern security (?)
@@ -125,7 +128,8 b' not found (this is intentionally using b'
125 128 $ HGEDITOR="c:\foo\bar\baz.exe -y -z" hg debuginstall
126 129 checking encoding (ascii)...
127 130 checking Python executable (*) (glob)
128 checking Python version (*) (glob)
131 checking Python version (2.*) (glob) (no-py3 !)
132 checking Python version (3.*) (glob) (py3 !)
129 133 checking Python lib (*lib*)... (glob)
130 134 checking Python security support (*) (glob)
131 135 TLS 1.2 not supported by Python install; network connections lack modern security (?)
@@ -240,7 +244,8 b" since it's bin on most platforms but Scr"
240 244 $ ./installenv/*/hg debuginstall || cat pip.log
241 245 checking encoding (ascii)...
242 246 checking Python executable (*) (glob)
243 checking Python version (2.*) (glob)
247 checking Python version (2.*) (glob) (no-py3 !)
248 checking Python version (3.*) (glob) (py3 !)
244 249 checking Python lib (*)... (glob)
245 250 checking Python security support (*) (glob)
246 251 TLS 1.2 not supported by Python install; network connections lack modern security (?)
General Comments 0
You need to be logged in to leave comments. Login now