We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent acfbf25 commit cf03aaaCopy full SHA for cf03aaa
1 file changed
test/unit/fixtures.py
@@ -20,6 +20,7 @@ def get_fixture(self, url):
20
"""
21
Returns the test fixture data loaded at the given URL
22
23
+ print(f"Getting fixture for URL: {url}")
24
return self.fixtures[url]
25
26
def _load_fixtures(self):
@@ -49,3 +50,4 @@ def _load_fixtures(self):
49
50
for obj in data["data"]:
51
if "id" in obj: # tags, obj-buckets don't have ids
52
self.fixtures[fixture_url + "/" + str(obj["id"])] = obj
53
+ print(f"Loaded fixtures for URLs: {list(self.fixtures.keys())}")
0 commit comments