Skip to content

Commit ad45872

Browse files
committed
Makefile: switch test/markdown to test-markdown
1 parent 12364b9 commit ad45872

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ jobs:
152152
# Currently, prow/api-ci tests all PRs that target master; use travis for post merge testing and non-master PRs
153153
if: type != pull_request OR branch != master
154154
<<: *dep_before_install
155-
script: make test/sanity test-unit test/markdown
155+
script: make test/sanity test-unit test-markdown
156156
after_success: echo 'Tests Passed'
157157
after_failure: echo 'Failure in unit, sanity, or markdown test'
158158

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -104,11 +104,11 @@ build/%.asc:
104104
}
105105

106106
# Static tests.
107-
.PHONY: test test/markdown test/sanity test-unit
107+
.PHONY: test test-markdown test/sanity test-unit
108108

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

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

114114
test/sanity: tidy
@@ -122,7 +122,7 @@ test-unit: ## Run the unit tests
122122
# CI tests.
123123
.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/testing/running-the-tests.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ All the tests are run through the [`Makefile`][makefile]. This is a brief descri
6363
- `test/e2e/ansible` - Runs the ansible E2E test.
6464
- `test/e2e/ansible-molecule` - Runs the ansible molecule E2E test.
6565
- `test/e2e/helm` - Runs the helm E2E test.
66-
- `test/markdown` - Runs the markdown checks
66+
- `test-markdown` - Runs the markdown checks
6767

6868
For more info on what these tests actually do, please see the [Travis Build][travis] doc.
6969

0 commit comments

Comments
 (0)