1
0
mirror of https://github.com/amix/vimrc synced 2025-07-13 06:35:01 +08:00

😼 Update plugins

This commit is contained in:
SUPERustam
2021-09-11 14:42:06 +03:00
parent 96bb75d663
commit e3b05f640b
61 changed files with 2215 additions and 830 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:]: