We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7a66142 commit 64ae2dcCopy full SHA for 64ae2dc
test/run-tests
@@ -67,9 +67,9 @@ def image_exists():
67
def tests_on_docker():
68
res = docker_run("bash -lc 'python /home/vimtest/run-tests inside-docker'", ok_fail=True)
69
if res == 0:
70
- print "Tests OK"
+ print("Tests OK")
71
else:
72
- print "Tests Failed"
+ print("Tests Failed")
73
sys.exit(1)
74
75
def inside_docker():
@@ -92,7 +92,7 @@ def main():
92
return
93
94
if not image_exists():
95
- print "Need to take image from remote"
+ print("Need to take image from remote")
96
system("docker pull %s" % (IMAGE, ))
97
98
if "-i" in sys.argv[1:]:
0 commit comments