From 82c920390c3864a778b0b8f3b54c9ce86c07c2ed Mon Sep 17 00:00:00 2001 From: Jeremiah Russell Date: Mon, 20 Oct 2025 12:46:40 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=91=B7=20ci(circleci):=20improve=20test?= =?UTF-8?q?=20runner=20condition=20logic?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - correct condition logic for test runner parameter in circleci config --- .circleci/config.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 7dad2ba..dd88f16 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -161,8 +161,8 @@ jobs: - when: condition: equal: - - cargo - << parameters.test_runner >> + - cargo steps: - toolkit/cargo_test: cargo_all_features: << parameters.cargo_all_features >> @@ -173,8 +173,8 @@ jobs: - when: condition: equal: - - nextest - << parameters.test_runner >> + - nextest steps: - cargo_nextest: cargo_all_features: << parameters.cargo_all_features >>