Skip to content

Commit ff2284e

Browse files
committed
TEST/MINOR: ci: combine two tags for go parallel testing
1 parent 6afd804 commit ff2284e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/actions.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,6 +124,6 @@ jobs:
124124
- name: Setup
125125
run: CI_ENV=github deploy/tests/create.sh
126126
- name: Run parallel e2e tests
127-
run: go test ./... -v --tags=e2e_parallel
127+
run: go test ./... -v --tags=e2e_parallel --tags=e2e_https
128128
- name: Run sequential e2e tests
129129
run: go test ./... -v -p 1 --tags=e2e_sequential

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ test:
88
.PHONY: e2e
99
e2e:
1010
go clean -testcache
11-
go test ./... --tags=e2e_parallel
11+
go test ./... --tags=e2e_parallel --tags=e2e_https
1212
go test ./... -p 1 --tags=e2e_sequential
1313

1414
.PHONY: tidy

0 commit comments

Comments
 (0)