This repository has been archived on 2021-07-03. You can view files and clone it, but cannot push or open issues or pull requests.
abra/Makefile

23 lines
377 B
Makefile

default: test
test:
@docker run \
-it \
--rm \
-v "$(pwd):/workdir" \
docker:dind \
apk add bats && bats test.bats
docopt:
@if [ ! -d ".venv" ]; then \
python3 -m venv .venv && \
.venv/bin/pip install -U pip setuptools wheel && \
.venv/bin/pip install docopt-sh; \
fi
.venv/bin/docopt.sh abra
coverage:
@kcov coverage kcov
.PHONY: test docopt coverage