From 13351fe3f93bd3e50eb945cae4347b4d90bbd797 Mon Sep 17 00:00:00 2001 From: Jeremiah Russell Date: Mon, 20 Oct 2025 13:00:47 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=91=B7=20ci(nextest):=20configure=20nexte?= =?UTF-8?q?st=20for=20CI=20environment?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - disable fail-fast to ensure all tests are executed - generate junit.xml report for test results --- .config/nextest.toml | 6 ++++++ nextest.toml | 2 -- 2 files changed, 6 insertions(+), 2 deletions(-) create mode 100644 .config/nextest.toml delete mode 100644 nextest.toml diff --git a/.config/nextest.toml b/.config/nextest.toml new file mode 100644 index 0000000..11156d8 --- /dev/null +++ b/.config/nextest.toml @@ -0,0 +1,6 @@ +[profile.ci] +# Do not cancel the test run on the first failure. +fail-fast = false + +[profile.ci.junit] # this can be some other profile, too +path = "junit.xml" diff --git a/nextest.toml b/nextest.toml deleted file mode 100644 index 381c42c..0000000 --- a/nextest.toml +++ /dev/null @@ -1,2 +0,0 @@ -[profile.ci.junit] # this can be some other profile, too -path = "junit.xml"