Blame view
repos/zsh-users/antigen/Makefile
188 Bytes
|
ddbb98497
|
1 2 3 4 5 6 7 8 9 10 |
.PHONY: itests tests
PYENV ?= . .pyenv/bin/activate &&
TESTS ?= tests
itests:
${MAKE} tests CRAM_OPTS=-i
tests:
${PYENV} ZDOTDIR="${PWD}/tests" cram ${CRAM_OPTS} --shell=zsh ${TESTS}
|