File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -149,7 +149,6 @@ jobs:
149149
150150
151151 go_test_smoke_essentials_db :
152- if : false # Temporarily disabled - waiting on client fixes
153152 name : go test smoke essentials db
154153 needs : go_test_smoke_essentials_sub
155154 runs-on : ubuntu-latest
Original file line number Diff line number Diff line change @@ -36,6 +36,10 @@ clean:
3636testacc : bin
3737 TF_ACC=1 go test ./... -v $(TESTARGS ) -timeout 360m -p=1 -parallel=$(TEST_PARALLELISM ) -coverprofile bin/coverage.out
3838
39+ # Essentials tests must run serially due to API limitation of one essentials db per account
40+ testacc-essentials : bin
41+ TF_ACC=1 go test ./provider -v -run=" TestAccResourceRedisCloudEssentials|TestAccDataSourceRedisCloudEssentials" -timeout 360m -p=1 -parallel=1 -coverprofile bin/coverage.out
42+
3943generate_coverage :
4044 go tool cover -html=bin/coverage.out -o bin/coverage.html
4145
You can’t perform that action at this time.
0 commit comments