Merge pull request #1390 from mhartmay/fix-hanging-tests

testlib: Fix hanging tests
pull/1393/head
Alex Willmer 2 weeks ago committed by GitHub
commit 9c71a158e7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -172,11 +172,11 @@ def _have_cmd(args):
def have_python2():
return _have_cmd(['python2'])
return _have_cmd(['python2', '--version'])
def have_python3():
return _have_cmd(['python3'])
return _have_cmd(['python3', '--version'])
def have_sudo_nopassword():

Loading…
Cancel
Save