Skip to content

Commit 1ed554a

Browse files
committed
Makefile: transition from slashes to hyphens
Adding back the slashes to allow the CI to pass. We have a chicken and the egg problem. The CI for SDK doesn't know about the hyphens and the CI for the release PR doesn't know about the slashes.
1 parent 280f338 commit 1ed554a

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

Makefile

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -108,13 +108,13 @@ build/%.asc:
108108

109109
test: test-unit ## Run the tests
110110

111-
test-markdown:
111+
test-markdown test/markdown:
112112
./hack/ci/marker --root=doc
113113

114-
test-sanity: tidy
114+
test-sanity test/sanity: tidy
115115
./hack/tests/sanity-check.sh
116116

117-
test-unit: ## Run the unit tests
117+
test-unit test/unit: ## Run the unit tests
118118
$(Q)go test -count=1 -short ./cmd/...
119119
$(Q)go test -count=1 -short ./pkg/...
120120
$(Q)go test -count=1 -short ./internal/...
@@ -127,7 +127,7 @@ test-ci: test-markdown test-sanity test-unit install test-subcommand test-e2e ##
127127
# Subcommand tests.
128128
.PHONY: test-subcommand test-subcommand-local test-subcommand-scorecard test-subcommand-olm-install
129129

130-
test-subcommand: test-subcommand-local test-subcommand-scorecard test-subcommand-olm-install
130+
test-subcommand test/subcommand: test-subcommand-local test-subcommand-scorecard test-subcommand-olm-install
131131

132132
test-subcommand-local:
133133
./hack/tests/subcommand.sh
@@ -143,16 +143,16 @@ test-subcommand-olm-install:
143143

144144
test-e2e: test-e2e-go test-e2e-ansible test-e2e-ansible-molecule test-e2e-helm ## Run the e2e tests
145145

146-
test-e2e-go:
146+
test-e2e-go test/e2e/go:
147147
./hack/tests/e2e-go.sh $(ARGS)
148148

149-
test-e2e-ansible: image-build-ansible
149+
test-e2e-ansible test/e2e/ansible: image-build-ansible
150150
./hack/tests/e2e-ansible.sh
151151

152152
test-e2e-ansible-molecule: image-build-ansible
153153
./hack/tests/e2e-ansible-molecule.sh
154154

155-
test-e2e-helm: image-build-helm
155+
test-e2e-helm test/e2e/helm: image-build-helm
156156
./hack/tests/e2e-helm.sh
157157

158158
# Image scaffold/build/push.

0 commit comments

Comments
 (0)