From 6cb2e91cf0da640afc41a5ed04dcaabb7f349230 Mon Sep 17 00:00:00 2001 From: moridin26 Date: Tue, 27 Jun 2023 13:20:54 +0300 Subject: [PATCH] check unit tests (#19) * check unit tests * add matchers unit tests * add matchers unit tests --------- Co-authored-by: suetin Co-authored-by: teem0n --- Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile b/Makefile index f5418587..b0e6e423 100644 --- a/Makefile +++ b/Makefile @@ -10,6 +10,7 @@ lint: unittests: go test ./cmd/... ./internal/... + go test ./cmd/... ./tests/testutil/matchers/ base_img: docker build --tag=mysync-test-base tests/images/base --build-arg MYSQL_VERSION=5.7 @@ -54,3 +55,4 @@ clean: docker network ls | grep mysync | awk '{print $$1}' | xargs docker network rm || true docker image ls | grep mysync | awk '{print $$3}' | xargs docker image rm --force || true rm -rf ./tests/logs +