ci: don't run empty contract and tools tests (#1385)

This commit is contained in:
Adam Uhlíř 2026-01-26 17:44:16 +01:00 committed by GitHub
parent f8d3e0d3be
commit 4fecccc539
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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