You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: backend/golang/Makefile
+8-2Lines changed: 8 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -27,15 +27,21 @@ lint:
27
27
golangci-lint run --fix
28
28
29
29
test:
30
+
ifeq ($(CI),true)
30
31
go test -short ./...
32
+
else ifeq ($(GITHUB_ACTIONS),true)
33
+
go test -short ./...
34
+
else
35
+
go test -short -tags=large ./...
36
+
endif
31
37
32
38
test-containers:
33
39
@echo "Running tests with testcontainers..."
34
-
USE_TESTCONTAINERS=true go test -v ./pkg/agent/memory/evolvingmemory/... -timeout=10m
40
+
USE_TESTCONTAINERS=true go test -v -tags=large ./pkg/agent/memory/evolvingmemory/... -timeout=10m
35
41
36
42
test-backend-comparison:
37
43
@echo "Running backend comparison tests with containers..."
38
-
USE_TESTCONTAINERS=true ENABLE_BACKEND_COMPARISON_TESTS=true go test -v ./pkg/agent/memory/evolvingmemory/... -run=".*Comparison.*" -timeout=15m
44
+
USE_TESTCONTAINERS=true ENABLE_BACKEND_COMPARISON_TESTS=true go test -v -tags=large ./pkg/agent/memory/evolvingmemory/... -run=".*Comparison.*" -timeout=15m
39
45
40
46
test-integration:
41
47
go test -v ./pkg/dataprocessing/integration/... -timeout=90m
0 commit comments