Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions test/test.py
Original file line number Diff line number Diff line change
Expand Up @@ -271,6 +271,9 @@ def _find_paths():
path_leaf = os.path.basename(path)
if path_leaf.count('.') > 1:
continue
if path_leaf == 'demo-whisper_2_3.pdf':
# Known to fail.
continue
ret.append(os.path.relpath(path, root_path))
return ret

Expand Down Expand Up @@ -322,9 +325,6 @@ def test_one(path):
}

print(f'# Looking at: {path}')
if os.path.basename(path) == 'demo-whisper_2_3.pdf':
print(f'Ignoring {path=} because known to fail.')
return
path = f'{root_path}/{path}'
path_leaf = os.path.basename(path)
_, ext = os.path.splitext(path)
Expand Down