diff options
author | Skyler Hawthorne | 2023-02-04 21:20:23 +0000 |
---|---|---|
committer | GitHub | 2023-02-04 21:20:23 +0000 |
commit | b2e83f81e10089a0e81ce33c4beb51aefc29a62e (patch) | |
tree | 52913187385f31b857e5f1bfcdfe3fe07b008fa5 /.cargo/config.toml | |
parent | d6e2434f735545ded269f228e3d93684d2be262a (diff) |
enable rendering in integration tests (#5819)
This will allow testing more of the code base, as well as enable UI-
specific testing.
Debug mode builds are prohibitively slow for the tests, mostly
because of the concurrency write tests. So there is now a profile for
integration tests that sets the optimization level to 2 for a few helix
crates, and lowers the number of rounds of concurrent writes to 1000.
Diffstat (limited to '.cargo/config.toml')
-rw-r--r-- | .cargo/config.toml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.cargo/config.toml b/.cargo/config.toml index 5d615566..b016eca3 100644 --- a/.cargo/config.toml +++ b/.cargo/config.toml @@ -1,3 +1,3 @@ [alias] xtask = "run --package xtask --" -integration-test = "test --features integration --workspace --test integration" +integration-test = "test --features integration --profile integration --workspace --test integration" |