From 82d18dfe9a80e400a73eab6d71707d4f9f9e5b8e 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