From fc1ba7fdeb075fe3cafe2134d9cedfa1cdf124e5 Mon Sep 17 00:00:00 2001 From: go-jet Date: Sat, 4 Apr 2026 19:52:51 +0200 Subject: [PATCH] Fix circle.ci --- .circleci/config.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index bdf80e9..dd75612 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -156,8 +156,8 @@ jobs: go run ./init/init.go -testsuite cockroach # run mariaDB and cockroachdb tests. No need to collect coverage, because coverage is already included with mysql and postgres tests - - run: MY_SQL_SOURCE=MariaDB go test -v ./tests/mysql/ - - run: PG_SOURCE=COCKROACH_DB go test -v ./tests/postgres/ + - run: cd tests && MY_SQL_SOURCE=MariaDB go test -v ./mysql/ + - run: cd tests && PG_SOURCE=COCKROACH_DB go test -v ./postgres/ - save_cache: key: go-mod-v4-{{ checksum "go.sum" }}