You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@annotator.apache.org by ra...@apache.org on 2020/02/05 09:19:29 UTC

[incubator-annotator] 01/02: Replace make test with make check

This is an automated email from the ASF dual-hosted git repository.

randall pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-annotator.git

commit 8a5728916ea37fe5d419d1f523e6ead7f558e4ea
Author: Randall Leeds <ra...@apache.org>
AuthorDate: Wed Feb 5 01:14:46 2020 -0800

    Replace make test with make check
---
 Makefile | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/Makefile b/Makefile
index 9f085f7..6ca2a32 100644
--- a/Makefile
+++ b/Makefile
@@ -57,8 +57,8 @@ build:
 clean:
 	@yarn run clean
 
-.PHONY: test
-test: build
+.PHONY: check
+check:
 	@yarn test
 
 ifeq ($(vsn_tag),)
@@ -86,6 +86,6 @@ dist:
 .PHONY: distcheck
 distcheck: dist
 	@tar xzf apache-annotator-$(annotator_vsn)$(vsn_pre)-incubating.tar.gz
-	@make -C apache-annotator-$(annotator_vsn)-incubating test
+	@make -C apache-annotator-$(annotator_vsn)-incubating check
 
 endif