From: Daniel Hahler Date: Sun, 16 Nov 2014 10:40:09 +0000 (+0100) Subject: Use 'test' as target for tests (common sense) X-Git-Url: http://www.git.stargrave.org/?a=commitdiff_plain;h=98f0ec81feee458c9a112993cbc4c76fb2625203;p=zsh-autoenv.git Use 'test' as target for tests (common sense) --- diff --git a/.travis.yml b/.travis.yml index b56caf2..00828ba 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,4 +4,4 @@ python: before_script: - "sudo apt-get install zsh" install: "sudo pip install cram" -script: "make tests" +script: "make test" diff --git a/Makefile b/Makefile index bed40b1..a769734 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ -.PHONY: itests tests +.PHONY: itest test -itests: +itest: ZDOTDIR="${PWD}/tests" cram -i --shell=zsh tests -tests: +test: ZDOTDIR="${PWD}/tests" cram --shell=zsh tests