QA works
parent
1b03c8ddb4
commit
bdb8a6f693
10
Makefile
10
Makefile
|
@ -115,9 +115,17 @@ ipynbcheckpoints-remove:
|
|||
pytestcache-remove:
|
||||
find . | grep -E ".pytest_cache" | xargs rm -rf
|
||||
|
||||
.PHONY: pkl-remove
|
||||
pytestcache-remove:
|
||||
find . | grep -E ".pkl" | xargs rm -rf
|
||||
|
||||
.PHONY: log-remove
|
||||
pytestcache-remove:
|
||||
find . | grep -E ".log" | xargs rm -rf
|
||||
|
||||
.PHONY: build-remove
|
||||
build-remove:
|
||||
rm -rf build/
|
||||
|
||||
.PHONY: cleanup
|
||||
cleanup: pycache-remove dsstore-remove mypycache-remove ipynbcheckpoints-remove pytestcache-remove
|
||||
cleanup: pycache-remove dsstore-remove mypycache-remove ipynbcheckpoints-remove pytestcache-remove pkl-remove log-remove
|
||||
|
|
Loading…
Reference in New Issue