From fa72a93e1de3a4789db067bae7ad5fe02b9310d5 Mon Sep 17 00:00:00 2001 From: Jeremiah Russell Date: Wed, 22 Oct 2025 11:19:45 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20fix(ci):=20correct=20default=20t?= =?UTF-8?q?est=20runner=20value?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - fix default test runner value in circleci config --- .circleci/config.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 6e24960..00d22c6 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: cargo + default: test description: The test runner to use enum: - - cargo + - test - nextest type: enum nextest_profile: @@ -162,7 +162,7 @@ jobs: condition: equal: - << parameters.test_runner >> - - cargo + - test steps: - toolkit/cargo_test: cargo_all_features: << parameters.cargo_all_features >>