Spaces:
Runtime error
Runtime error
Added a missing comment
Browse files- src/testing.py +3 -0
src/testing.py
CHANGED
@@ -214,6 +214,9 @@ class TestGroup:
|
|
214 |
|
215 |
@classmethod
|
216 |
def load_json_test_groups(cls, reload: bool = False) -> List[TestGroup]:
|
|
|
|
|
|
|
217 |
ArchitectureRequestRecord.load_all(reload=reload)
|
218 |
test_groups: Dict[str, TestGroup] = {}
|
219 |
for arr in ArchitectureRequestRecord.all:
|
|
|
214 |
|
215 |
@classmethod
|
216 |
def load_json_test_groups(cls, reload: bool = False) -> List[TestGroup]:
|
217 |
+
"""
|
218 |
+
Load all the test groups from the local json file, reloading from the HF Hub if requested
|
219 |
+
"""
|
220 |
ArchitectureRequestRecord.load_all(reload=reload)
|
221 |
test_groups: Dict[str, TestGroup] = {}
|
222 |
for arr in ArchitectureRequestRecord.all:
|