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 f33fad7 commit 8f06a17Copy full SHA for 8f06a17
tests/check_files.py
@@ -14,7 +14,7 @@
14
for game in progressbar.progressbar(games_list, redirect_stdout=True):
15
with open(f"../entries/{game}/game.json") as f:
16
game = json.load(f)
17
- print(f"Checking {game['slug']}..")
+ # print(f"Checking {game['slug']}..")
18
for file in game["files"]:
19
if file["filename"] not in os.listdir(f"{path}/{game['slug']}"):
20
raise Exception(
@@ -25,6 +25,6 @@
25
26
f'{screenshot} found in manifest but not on disk (entry {game["slug"]})'
27
)
28
- print(
29
- f"{game['slug']}: {len(game['files'])} file(s), {len(game['screenshots'])} screenshot(s)"
30
- )
+ # print(
+ # f"{game['slug']}: {len(game['files'])} file(s), {len(game['screenshots'])} screenshot(s)"
+ # )
0 commit comments