From bdb8a6f6939229e9dafdec56fe4bcb917e3f3d3f Mon Sep 17 00:00:00 2001 From: Thamognya Kodi Date: Mon, 26 Dec 2022 13:09:15 +0700 Subject: [PATCH] QA works --- Makefile | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index d246008..0cbb47c 100644 --- a/Makefile +++ b/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