Skip to content

Commit

Permalink
rename tests to test target
Browse files Browse the repository at this point in the history
Signed-off-by: Rudi Grinberg <rudi.grinberg@gmail.com>
  • Loading branch information
rgrinberg committed Aug 19, 2018
1 parent 35e562d commit 0e2f9d1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Makefile
Expand Up @@ -3,16 +3,16 @@ DUNE ?= dune
all:
$(DUNE) build

tests:
test:
$(DUNE) runtest

check: tests
check: test

clean:
$(DUNE) clean

all-supported-ocaml-versions:
$(DUNE) runtest --workspace dune-workspace.dev
$(DUNE) runtest --workspace dune-workspace.dev

doc:
cd doc && sphinx-build . _build
Expand All @@ -21,4 +21,4 @@ livedoc:
cd doc && sphinx-autobuild . _build \
-p 8888 -q --host $(shell hostname) -r '\.#.*'

.PHONY: all tests clean check doc livedoc
.PHONY: all test clean check doc livedoc

0 comments on commit 0e2f9d1

Please sign in to comment.