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.
2 parents d4cec16 + 610c5a3 commit e345bb0Copy full SHA for e345bb0
1 file changed
src/kontrol/foundry.py
@@ -1045,8 +1045,9 @@ def foundry_list(foundry: Foundry) -> list[str]:
1045
]
1046
1047
lines: list[str] = []
1048
+ proof_ids = listdir(foundry.proofs_dir) if foundry.proofs_dir.exists() else []
1049
for method in sorted(all_methods):
- for test_id in listdir(foundry.proofs_dir):
1050
+ for test_id in proof_ids:
1051
test, *_ = test_id.split(':')
1052
if test == method:
1053
proof = foundry.get_optional_proof(test_id)
0 commit comments