.travis.yml | 2 +- Makefile | 6 +++--- diff --git a/.travis.yml b/.travis.yml index b56caf2a75d6a825cae3356ecfcb72e56725f30b..00828baa65aa19671dbde96986c73237ccc70e9a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,4 +4,4 @@ - "3.3" 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 bed40b1d8678d2cec73a63e62ca306228bbabedf..a769734a63e00dc2a9d5007000b860d3cdec845b 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