- Notifications
You must be signed in to change notification settings - Fork294
Closed
Description
Steps to reproduce:
git clone https://github.com/html5lib/html5lib-python.gitcd html5lib-pythontox
The tests fail with error messages like:
FileNotFoundError: [Errno 2] No such file or directory: '…/html5lib-python/html5lib/tests/testdata/encoding/chardet/test_big5.txt'
The reason is thatgit clone
does not clone/checkout submodules by default. The fix is to rungit submodule update --init
.
When findinghtml5lib/tests/testdata
empty, the test harness should print an appropriate warning with instructions.