Skip to content

Commit 8f06a17

Browse files
committed
tests: only show errors in test_files
1 parent f33fad7 commit 8f06a17

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tests/check_files.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
for game in progressbar.progressbar(games_list, redirect_stdout=True):
1515
with open(f"../entries/{game}/game.json") as f:
1616
game = json.load(f)
17-
print(f"Checking {game['slug']}..")
17+
# print(f"Checking {game['slug']}..")
1818
for file in game["files"]:
1919
if file["filename"] not in os.listdir(f"{path}/{game['slug']}"):
2020
raise Exception(
@@ -25,6 +25,6 @@
2525
raise Exception(
2626
f'{screenshot} found in manifest but not on disk (entry {game["slug"]})'
2727
)
28-
print(
29-
f"{game['slug']}: {len(game['files'])} file(s), {len(game['screenshots'])} screenshot(s)"
30-
)
28+
# print(
29+
# f"{game['slug']}: {len(game['files'])} file(s), {len(game['screenshots'])} screenshot(s)"
30+
# )

0 commit comments

Comments
 (0)