We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Steps to reproduce:
git clone https://github.com/html5lib/html5lib-python.git cd html5lib-python tox
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 that git clone does not clone/checkout submodules by default. The fix is to run git submodule update --init.
git clone
git submodule update --init
When finding html5lib/tests/testdata empty, the test harness should print an appropriate warning with instructions.
html5lib/tests/testdata
The text was updated successfully, but these errors were encountered:
Fix issue html5lib#122 by adding instructions on how to get html5lib/…
2fe4286
…tests/testdata/encoding/chardet/test_big5.txt from git
Fix html5lib#122: Check the testdata submodule is present
ce6a40f
662f2db
2b73979
Successfully merging a pull request may close this issue.
Steps to reproduce:
git clone https://github.com/html5lib/html5lib-python.git cd html5lib-python tox
The tests fail with error messages like:
The reason is that
git clone
does not clone/checkout submodules by default. The fix is to rungit submodule update --init
.When finding
html5lib/tests/testdata
empty, the test harness should print an appropriate warning with instructions.The text was updated successfully, but these errors were encountered: