diff options
author | Martin Fischer <martin@push-f.com> | 2023-08-11 19:37:09 +0200 |
---|---|---|
committer | Martin Fischer <martin@push-f.com> | 2023-08-19 06:39:08 +0200 |
commit | b48e5c3b99fd537d223cb899e8675177d77e650c (patch) | |
tree | d614c5c0950f75d677fb5e9e351c19a30d140257 /.gitmodules | |
parent | 900c12ee92ee9dfff7e2c52770ba17a0c51f837f (diff) |
refactor: move html5lib test to own crate to fix `cargo test`
Previously `cargo test` failed because it ran the test_html5lib
integration test, which depends on the integration-tests feature
(so you always had to run `cargo test` with
`--features integration-tests` or `--all-features`, which was annoying).
This commit moves the integration tests to another crate,
so that the dependency on the feature can be properly defined
in a way so that `cargo test` just works and runs the test.
Diffstat (limited to '.gitmodules')
-rw-r--r-- | .gitmodules | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.gitmodules b/.gitmodules index 2411bd3..36e58a2 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,3 +1,3 @@ -[submodule "tests/html5lib-tests"] - path = tests/html5lib-tests +[submodule "html5lib-tests"] + path = integration_tests/html5lib-tests url = https://github.com/html5lib/html5lib-tests |