From 6fe2574196916768bf1528cf6c6b6681eb85fd4b Mon Sep 17 00:00:00 2001 From: Maximilian Roos Date: Sun, 30 Jun 2024 14:21:43 -0700 Subject: [PATCH] --- .config/nextest.toml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.config/nextest.toml b/.config/nextest.toml index 5abe0ff92d69..e4b78ebceb6d 100644 --- a/.config/nextest.toml +++ b/.config/nextest.toml @@ -16,6 +16,11 @@ test-group = 'test-dbs' # the database has already been setup. For now, we can use cargo test instead. max-threads = 1 +[[profile.default.overrides]] +# cli tests take a bit longer +filter = 'test(cli)' +slow-timeout = {period = "1s"} + [[profile.default.overrides]] filter = 'package(mdbook-prql)' # These are testing dozens of queries, so we give them more time.