Files
Sheerka-Old/Makefile
T

15 lines
236 B
Makefile

.PHONY: test
test: clean
py.test tests
clean:
rm -rf build
rm -rf docs/build
rm -rf docs/source/_build
rm -rf prof
rm -rf tests/prof
find . -name '.pytest_cache' -exec rm -rf {} +
find . -name '__pycache__' -exec rm -rf {} +