From 4fecccc53953e0d4168c2ed86abdef3021ee2e3c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adam=20Uhl=C3=AD=C5=99?= Date: Mon, 26 Jan 2026 17:44:16 +0100 Subject: [PATCH] ci: don't run empty contract and tools tests (#1385) --- tools/scripts/ci-job-matrix.sh | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/tools/scripts/ci-job-matrix.sh b/tools/scripts/ci-job-matrix.sh index 15dfa9fb..28734fbc 100755 --- a/tools/scripts/ci-job-matrix.sh +++ b/tools/scripts/ci-job-matrix.sh @@ -58,20 +58,6 @@ unit_test () { job } -# outputs a contract test job -contract_test () { - job_tests="contract" - job_includes="" - job -} - -# outputs a tools test job -tools_test () { - job_tests="tools" - job_includes="" - job -} - # finds all files named test*.nim in the specified directory find_tests () { local dir=$1 @@ -126,9 +112,7 @@ integration_test () { # outputs jobs for all test types all_tests () { unit_test - contract_test integration_test - tools_test } # outputs jobs for the specified operating systems and all test types