mirror of
https://github.com/pre-commit/pre-commit.git
synced 2026-01-28 20:08:32 -06:00
18 lines
192 B
Makefile
18 lines
192 B
Makefile
.PHONY: all
|
|
all: venv test
|
|
|
|
.PHONY: venv
|
|
venv:
|
|
tox -e venv
|
|
|
|
.PHONY: tests test
|
|
tests: test
|
|
test:
|
|
tox
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
find . -iname '*.pyc' | xargs rm -f
|
|
rm -rf .tox
|
|
rm -rf ./venv-*
|