Skip to content

Commit cf03aaa

Browse files
committed
debug
1 parent acfbf25 commit cf03aaa

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

test/unit/fixtures.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ def get_fixture(self, url):
2020
"""
2121
Returns the test fixture data loaded at the given URL
2222
"""
23+
print(f"Getting fixture for URL: {url}")
2324
return self.fixtures[url]
2425

2526
def _load_fixtures(self):
@@ -49,3 +50,4 @@ def _load_fixtures(self):
4950
for obj in data["data"]:
5051
if "id" in obj: # tags, obj-buckets don't have ids
5152
self.fixtures[fixture_url + "/" + str(obj["id"])] = obj
53+
print(f"Loaded fixtures for URLs: {list(self.fixtures.keys())}")

0 commit comments

Comments
 (0)