Skip to content

Commit ffd4c32

Browse files
committed
fix(test): remove notty
1 parent 7b47d34 commit ffd4c32

File tree

3 files changed

+2
-5
lines changed

3 files changed

+2
-5
lines changed

.github/workflows/e2e.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,4 +61,4 @@ jobs:
6161
key: commitizen-${{ github.event.pull_request.number }}-${{ github.sha }}
6262
- name: Run E2E test
6363
run: |
64-
GOPATH=~/go make e2e NO_TTY=1
64+
GOPATH=~/go make e2e

Makefile

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,6 @@ Options:
2424
This option is available when using: make release
2525
V Set to 1 enable verbose build. Default is 0.
2626
DEBUG Whether to generate debug symbols. Default is 0.
27-
NO_TTY Make sure that the TTY (terminal) is never used for
28-
any output. Default is 0.
2927
endef
3028
export USAGE_OPTIONS
3129

hack/include/test.mk

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414

1515
GINKGO := $(shell go env GOPATH)/bin/ginkgo
1616
CLI ?= $(OUTPUT_DIR)/commitizen
17-
NO_TTY ?= 0
1817

1918
.PHONY: test.cover
2019
test.cover:
@@ -25,4 +24,4 @@ test.cover:
2524
.PHONY: test.e2e
2625
test.e2e: tools.verify.ginkgo
2726
@echo "===========> Run e2e test, CLI: $(CLI)"
28-
@$(GINKGO) -v $(REPO_ROOT)/test/e2e -- -cli=$(CLI) -no-tty=$(NO_TTY)
27+
@$(GINKGO) -v $(REPO_ROOT)/test/e2e -- -cli=$(CLI)

0 commit comments

Comments
 (0)