1
0
mirror of https://github.com/amix/vimrc synced 2025-06-29 02:55:01 +08:00

Updated plugins

This commit is contained in:
Amir
2021-10-11 11:30:43 +02:00
parent 83980d8f24
commit 92c794cc2b
100 changed files with 3555 additions and 1631 deletions

View File

@ -67,9 +67,9 @@ def image_exists():
def tests_on_docker():
res = docker_run("bash -lc 'python /home/vimtest/run-tests inside-docker'", ok_fail=True)
if res == 0:
print "Tests OK"
print("Tests OK")
else:
print "Tests Failed"
print("Tests Failed")
sys.exit(1)
def inside_docker():
@ -92,7 +92,7 @@ def main():
return
if not image_exists():
print "Need to take image from remote"
print("Need to take image from remote")
system("docker pull %s" % (IMAGE, ))
if "-i" in sys.argv[1:]: