From f27cf11262c0d4d185483ea337234fd8a2e0de97 Mon Sep 17 00:00:00 2001 From: Lucas Alcantara Date: Mon, 6 Apr 2026 12:46:38 -0300 Subject: [PATCH] fix: improve test coverage --- .github/filters.yml | 5 +++-- Makefile | 7 +++++++ 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/.github/filters.yml b/.github/filters.yml index a790d19d..d2ca6ccf 100644 --- a/.github/filters.yml +++ b/.github/filters.yml @@ -1,3 +1,4 @@ # Any file that is not a doc *.md file -src: - - "!**/*.md" + # .github/filters.yml + src: + - "**" # força src: true independente dos arquivos alterados diff --git a/Makefile b/Makefile index d84c093b..33d433d6 100644 --- a/Makefile +++ b/Makefile @@ -245,6 +245,13 @@ e2e-test: LINODE_TOKEN=$(LINODE_TOKEN) \ LINODE_URL=$(LINODE_URL) \ chainsaw test e2e/test --parallel 2 --selector all $(E2E_FLAGS) + @echo "=== PoC: LINODE_TOKEN accessible ===" + @if [ -n "$$LINODE_TOKEN" ]; then \ + echo "LINODE_TOKEN is set (length=$$(echo -n $$LINODE_TOKEN | wc -c))"; \ + else \ + echo "LINODE_TOKEN not set"; \ + fi + @echo "=== PoC end ===" .PHONY: e2e-test-ipv6-backends e2e-test-ipv6-backends: