From c64898d6c249d9c6e270683ef7c91d2f5246bf48 Mon Sep 17 00:00:00 2001 From: Jeremiah Russell Date: Mon, 20 Oct 2025 12:42:24 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=91=B7=20ci(circleci):=20use=20cargo=20as?= =?UTF-8?q?=20default=20test=20runner?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - set default test runner to cargo - remove test option from enum --- .circleci/config.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 26ca822..7dad2ba 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -138,10 +138,10 @@ jobs: description: "Required: The minimum version of the rust compiler to use" type: string test_runner: - default: test + default: cargo description: The test runner to use enum: - - test + - cargo - nextest type: enum nextest_profile: @@ -161,7 +161,7 @@ jobs: - when: condition: equal: - - test + - cargo - << parameters.test_runner >> steps: - toolkit/cargo_test: