We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9722117 commit 410f297Copy full SHA for 410f297
1 file changed
pyproject.toml
@@ -76,6 +76,14 @@ shell = """
76
ruff format .
77
"""
78
79
+[[tool.poe.tasks.clean]]
80
+help = "Clean up the project working tree (i.e. remove __pycache__ folders)"
81
+shell = """
82
+ find . -name "__pycache__" | xargs rm -rf
83
+ find . -name "*.pyc" -delete
84
+ rm -rf .mypy_cache .pytest_cache .ruff_cache dist/ .coverage.*
85
+ """
86
+
87
[tool.coverage.run]
88
branch = true
89
omit = [
0 commit comments