mirror of
https://github.com/pre-commit/pre-commit.git
synced 2026-02-17 16:24:40 +04:00
17 lines
192 B
Makefile
17 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-*
|