We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6afd804 commit ff2284eCopy full SHA for ff2284e
.github/workflows/actions.yml
@@ -124,6 +124,6 @@ jobs:
124
- name: Setup
125
run: CI_ENV=github deploy/tests/create.sh
126
- name: Run parallel e2e tests
127
- run: go test ./... -v --tags=e2e_parallel
+ run: go test ./... -v --tags=e2e_parallel --tags=e2e_https
128
- name: Run sequential e2e tests
129
run: go test ./... -v -p 1 --tags=e2e_sequential
Makefile
@@ -8,7 +8,7 @@ test:
8
.PHONY: e2e
9
e2e:
10
go clean -testcache
11
- go test ./... --tags=e2e_parallel
+ go test ./... --tags=e2e_parallel --tags=e2e_https
12
go test ./... -p 1 --tags=e2e_sequential
13
14
.PHONY: tidy
0 commit comments