Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: ci uses integration tag to find tests (#1379)
Two changes: - CI looks in `intergration` and `backend/controller/cronjobs` directories for integration tests - Filters files by ones that include `//go:build integration` ``` $ echo "matrix={\"test\":$(jq -c -n '$ARGS.positional' --args $(grep -r -l '^//go:build integration' integration backend/controller/cronjobs | xargs grep '^func Test' | awk '{print $2}' | cut -d'(' -f1))}" matrix={"test":["TestCron","TestLifecycle","TestInterModuleCall","TestDatabase","TestSchemaGenerate","TestHttpIngress","TestServiceWithRealDal"]} ```
- Loading branch information