9 lines
92 B
Makefile
9 lines
92 B
Makefile
.PHONY: test
|
|
|
|
test:
|
|
py.test tests
|
|
|
|
|
|
clean:
|
|
find . -name '.pytest_cache' -exec rm -rf {} +
|