We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents f614a4b + 0fe0a81 commit 7d436bfCopy full SHA for 7d436bf
Makefile
@@ -48,7 +48,8 @@ watch: ## Run tests on every change.
48
ls **/**.py | entr $(ENV_PREFIX)pytest -s -vvv -l --tb=long --maxfail=1 tests/
49
50
.PHONY: clean
51
-clean: ## Clean unused files.
+clean:
52
+ @echo "* Cleaning unused files..."
53
@find ./ -name '*.pyc' -exec rm -f {} \;
54
@find ./ -name '__pycache__' -exec rm -rf {} \;
55
@find ./ -name 'Thumbs.db' -exec rm -f {} \;
@@ -116,7 +117,7 @@ init: ## Initialize the project based on an application template.
116
117
@./.github/init.sh
118
119
.PHONY: build
-build:
120
+build: clean
121
@python3 -m build
122
123
# This project has been generated from rochacbruno/python-project-template
0 commit comments