Ignore failed goimports installs

since we only use it with go versions >= 1.5 anyway
This commit is contained in:
Dan Buch
2016-07-23 14:39:14 -04:00
parent 11c134509d
commit 8d4b6abc2b
3 changed files with 2 additions and 3 deletions

View File

@@ -71,7 +71,7 @@ def _toc():
def _gen():
go_version = check_output('go version'.split()).split()[2]
if go_version < 'go1.4':
if go_version < 'go1.5':
print('runtests: skip on {}'.format(go_version), file=sys.stderr)
return