From b47ae8a053b927425dce7fb5311c76aef32abed5 Mon Sep 17 00:00:00 2001 From: Saqib Ansari Date: Thu, 1 Jan 2026 12:37:38 +0530 Subject: [PATCH] fix: don't run server tests on svg change (#35583) --- .github/helper/roulette.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/helper/roulette.py b/.github/helper/roulette.py index 0d714ef3b3..08ff075914 100644 --- a/.github/helper/roulette.py +++ b/.github/helper/roulette.py @@ -141,7 +141,7 @@ def is_ci(file): def is_frontend_code(file): """Check if the file is frontend code.""" - return file.lower().endswith((".css", ".scss", ".less", ".sass", ".styl", ".js", ".ts", ".vue", ".html")) + return file.lower().endswith((".css", ".scss", ".less", ".sass", ".styl", ".js", ".ts", ".vue", ".html", ".svg")) def is_docs(file):