12 lines
171 B
Makefile
12 lines
171 B
Makefile
.PHONY: test
|
|
|
|
test: clean
|
|
py.test tests
|
|
|
|
|
|
clean:
|
|
rm -rf build
|
|
rm -rf prof
|
|
find . -name '.pytest_cache' -exec rm -rf {} +
|
|
find . -name '__pycache__' -exec rm -rf {} +
|