From d5e479d7bdc39eaba26d19265e468c6bc6d7f1a8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ji=C5=99=C3=AD=20=C4=8Ctvrtka?= Date: Thu, 19 Sep 2024 13:52:08 +0200 Subject: [PATCH] PMM-13132 Skip encryption-rotation test in main test. --- .github/workflows/main.yml | 2 -- Makefile.include | 2 +- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 854c7e00b4..e7c38a3d46 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -10,8 +10,6 @@ on: - v[0-9]+.[0-9]+.[0-9]+* pull_request: - paths-ignore: - - "encryption-rotation/**" jobs: check: diff --git a/Makefile.include b/Makefile.include index 615f32251b..69835b303a 100644 --- a/Makefile.include +++ b/Makefile.include @@ -45,7 +45,7 @@ gen-mocks: ./bin/mockery --config .mockery.yaml test-common: ## Run tests from API (and other shared) packages only (i.e it ignores directories that are explicitly listed) - go test $(shell go list ./... | grep -v -e admin -e agent -e managed -e api-tests -e qan-api2 -e update) + go test $(shell go list ./... | grep -v -e admin -e agent -e managed -e api-tests -e qan-api2 -e update -e encryption-rotation) api-test: ## Run API tests on dev env. go test -count=1 -race -p 1 -v ./api-tests/... -pmm.server-insecure-tls