From c0d37c154fe9b0b5963ced481d14d3d1d1bd4049 Mon Sep 17 00:00:00 2001 From: Timo De Meyst <58138112+kloep1@users.noreply.github.com> Date: Mon, 14 Apr 2025 10:36:52 +0200 Subject: [PATCH] actions: extra test exclusions --- backend/vitest.config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/vitest.config.ts b/backend/vitest.config.ts index ee810173..ec507c9b 100644 --- a/backend/vitest.config.ts +++ b/backend/vitest.config.ts @@ -9,7 +9,7 @@ export default defineConfig({ reporter: ['text', 'json-summary', 'json'], // If you want a coverage reports even if your tests are failing, include the reportOnFailure option reportOnFailure: true, - exclude: ['**/*config*', '**/tests/**', 'src/*.ts', '**/dist/**', '**/node_modules/**'], + exclude: ['**/*config*', '**/tests/**', 'src/*.ts', '**/dist/**', '**/node_modules/**', 'src/logging/**', 'src/routes/**'], thresholds: { lines: 60, branches: 60,