5
0
mirror of https://github.com/cwinfo/hyperboria-peers.git synced 2024-09-18 23:49:35 +00:00

Update tests.py to allow a single file to be tested, to help work towards #22

This commit is contained in:
Finn 2015-11-25 19:09:59 -08:00
parent 5c1ff011e4
commit b492c2a908

View File

@ -39,13 +39,17 @@ def validate(path):
print(" %sInvalid JSON!%s" % (RED, END))
return False
success = True
for directory, subdirs, files in os.walk('.'):
if len(files) > 0:
for f in files:
if f.endswith('.k'):
result = validate("%s/%s" % (directory, f))
if not result:
success = False
if not success:
sys.exit(1)
if __name__ == "__main__":
success = True
if len(sys.argv) == 2:
success = validate(sys.argv[1])
else:
for directory, subdirs, files in os.walk('.'):
if len(files) > 0:
for f in files:
if f.endswith('.k'):
result = validate("%s/%s" % (directory, f))
if not result:
success = False
if not success:
sys.exit(1)