mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-03 02:47:45 +03:00
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.
This commit is contained in:
parent
d6e2434f73
commit
b2e83f81e1
4 changed files with 8 additions and 6 deletions
|
@ -25,3 +25,9 @@ lto = "fat"
|
|||
codegen-units = 1
|
||||
# strip = "debuginfo" # TODO: or strip = true
|
||||
opt-level = 3
|
||||
|
||||
[profile.integration]
|
||||
inherits = "test"
|
||||
package.helix-core.opt-level = 2
|
||||
package.helix-tui.opt-level = 2
|
||||
package.helix-term.opt-level = 2
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue