Skip to content

Commit bf42927

Browse files
committed
Travis error debugging;
1 parent 1c5ba7b commit bf42927

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

test/test_cli/test_script.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,8 @@ def tmp_dir_cleanup():
2424
# download GitHub Gist dataset into tmp folder
2525
GISTS_URL = "https://api.github.com/gists"
2626
gists = requests.get(GISTS_URL).json()
27+
print(type(gists))
28+
print(gists)
2729
for item in gists:
2830
with (tmp_path / f"{item['id']}.gist").open("w") as f:
2931
json.dump(item, f)

0 commit comments

Comments
 (0)