Skip to content

Commit 8b21bbd

Browse files
committed
Makefile: switch test/ci to test-ci
1 parent fbf48a9 commit 8b21bbd

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -120,9 +120,9 @@ test-unit: ## Run the unit tests
120120
$(Q)go test -count=1 -short ./internal/...
121121

122122
# CI tests.
123-
.PHONY: test/ci
123+
.PHONY: test-ci
124124

125-
test/ci: test-markdown test-sanity test-unit install test/subcommand test/e2e ## Run the CI test suite
125+
test-ci: test-markdown test-sanity test-unit install test/subcommand test/e2e ## Run the CI test suite
126126

127127
# Subcommand tests.
128128
.PHONY: test/subcommand test/subcommand/test-local test/subcommand/scorecard test/subcommand/olm-install

doc/dev/developer_guide.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ To build the binary and run all tests (assuming you have a correctly configured
2424
you can simple run:
2525

2626
```sh
27-
$ make test/ci
27+
$ make test-ci
2828
```
2929

3030
If you simply want to run the unit tests, you can run:

doc/dev/testing/running-the-tests.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ $ export KUBECONFIG="$(kind get kubeconfig-path --name="kind")"
5454
All the tests are run through the [`Makefile`][makefile]. This is a brief description of all makefile test instructions:
5555

5656
- `test` - Runs the unit tests (`test-unit`).
57-
- `test/ci` - Runs markdown, sanity, and unit tests, installs the SDK binary, and runs the SDK subcommand and all E2E tests.
57+
- `test-ci` - Runs markdown, sanity, and unit tests, installs the SDK binary, and runs the SDK subcommand and all E2E tests.
5858
- `test-sanity` - Runs sanity checks.
5959
- `test-unit` - Runs unit tests.
6060
- `test/subcommand` - Runs subcommand tests.

0 commit comments

Comments
 (0)