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: Makefile
+3-2Lines changed: 3 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -52,12 +52,13 @@ default: help
52
52
build: fmtcheck ## Build the provider
53
53
go install
54
54
55
-
test: acceptance ## Run all acceptance tests
55
+
test: testcontainers-matrix ## Run all acceptance tests
56
+
test-sequential: acceptance
56
57
57
58
# Run testcontainers tests with a matrix of all database versions
58
59
# Usage: make testcontainers-matrix TESTARGS="TestAccUser"
59
60
testcontainers-matrix: fmtcheck bin/terraform ## Run test matrix across all database versions
60
-
@cd $(CURDIR)&& PATH="$(CURDIR)/bin:${PATH}" go run scripts/test-runner.go $(if$(TESTARGS),$(TESTARGS),WithTestcontainers)
61
+
@cd $(CURDIR)&& PATH="$(CURDIR)/bin:${PATH}"PARALLEL=4 GOTOOLCHAIN=auto TF_ACC=1 go run scripts/test-runner.go $(if$(TESTARGS),$(TESTARGS),WithTestcontainers)
61
62
62
63
# Run testcontainers tests for a specific database image
63
64
# Usage: make testcontainers-image DOCKER_IMAGE=mysql:8.0
0 commit comments