From 555bd9a7461fc32c5d59c8d61d9d7b9e3c3015f7 Mon Sep 17 00:00:00 2001 From: perf3ct Date: Tue, 24 Jun 2025 21:56:40 +0000 Subject: [PATCH] feat(ci): don't use debug or incremental in ci --- Cargo.toml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index eb2d0ca..692b840 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -67,3 +67,7 @@ test-utils = ["testcontainers", "testcontainers-modules"] tempfile = "3" testcontainers = "0.24" testcontainers-modules = { version = "0.12", features = ["postgres"] } + +[profile.test] +incremental = false +debug = false