build: e2e 测试添加 build tag 避免 CI 运行

- 添加 //go:build e2e tag,CI 不会自动运行这些测试
- Makefile 添加 test-e2e 目标用于本地手动运行
This commit is contained in:
song
2025-12-28 21:59:40 +08:00
parent ad15d9970c
commit b6b739431c
2 changed files with 7 additions and 1 deletions

View File

@@ -1,3 +1,5 @@
//go:build e2e
package integration
import (