Add ctypes to healthy check

This commit is contained in:
Anthony Sottile
2017-10-03 21:10:09 -07:00
parent a543190f7b
commit e70825ab31

View File

@@ -86,7 +86,7 @@ def get_default_version():
def healthy(repo_cmd_runner, language_version):
with in_env(repo_cmd_runner, language_version):
retcode, _, _ = cmd_output(
'python', '-c', 'import datetime, io, os, ssl, weakref',
'python', '-c', 'import ctypes, datetime, io, os, ssl, weakref',
retcode=None,
)
return retcode == 0