aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSkyler Hawthorne2023-02-04 21:20:23 +0000
committerGitHub2023-02-04 21:20:23 +0000
commitb2e83f81e10089a0e81ce33c4beb51aefc29a62e (patch)
tree52913187385f31b857e5f1bfcdfe3fe07b008fa5
parentd6e2434f735545ded269f228e3d93684d2be262a (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.
-rw-r--r--.cargo/config.toml2
-rw-r--r--Cargo.toml6
-rw-r--r--helix-term/src/application.rs4
-rw-r--r--helix-term/tests/test/write.rs2
4 files changed, 8 insertions, 6 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"
diff --git a/Cargo.toml b/Cargo.toml
index ecf6848e..c7e25472 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -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
diff --git a/helix-term/src/application.rs b/helix-term/src/application.rs
index 05ceb874..a1685fcf 100644
--- a/helix-term/src/application.rs
+++ b/helix-term/src/application.rs
@@ -277,10 +277,6 @@ impl Application {
Ok(app)
}
- #[cfg(feature = "integration")]
- async fn render(&mut self) {}
-
- #[cfg(not(feature = "integration"))]
async fn render(&mut self) {
let mut cx = crate::compositor::Context {
editor: &mut self.editor,
diff --git a/helix-term/tests/test/write.rs b/helix-term/tests/test/write.rs
index d0128edc..bbf14fc2 100644
--- a/helix-term/tests/test/write.rs
+++ b/helix-term/tests/test/write.rs
@@ -70,7 +70,7 @@ async fn test_write_quit() -> anyhow::Result<()> {
async fn test_write_concurrent() -> anyhow::Result<()> {
let mut file = tempfile::NamedTempFile::new()?;
let mut command = String::new();
- const RANGE: RangeInclusive<i32> = 1..=5000;
+ const RANGE: RangeInclusive<i32> = 1..=1000;
let mut app = helpers::AppBuilder::new()
.with_file(file.path(), None)
.build()?;