Skip to content

Commit

Permalink
Tweak the Make clean command to prune .tox
Browse files Browse the repository at this point in the history
  • Loading branch information
zerolab committed Feb 11, 2024
1 parent 7098dbf commit b1df835
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 12 deletions.
10 changes: 0 additions & 10 deletions MANIFEST.in

This file was deleted.

4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ help: ## ⁉️ - Display help comments for each make command

clean: ## 🗑️ - Removes pycache and test media
@echo "🗑️ - Removing __pycache__ and test artifacts"
rm -rf test-media test-static
find . -name ".tox" -prune -o -type d -name "__pycache__" -exec rm -r {} +
rm -rf test-media test-static .tox
find . -type d -name "__pycache__" -exec rm -r {} +

package-setup:
@echo "📦 - Packaging for PyPI"
Expand Down

0 comments on commit b1df835

Please sign in to comment.