Skip to content

Commit

Permalink
feat: add Makefile clean
Browse files Browse the repository at this point in the history
  • Loading branch information
pdrb committed Sep 29, 2024
1 parent f2dd58e commit 7a24eaa
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,10 @@ lint:

test:
python3 -m unittest -v

clean:
rm -rf dist
find . -name '.ruff_cache' -exec rm -rf {} +
find . -name '__pycache__' -exec rm -rf {} +
find . -name '*.pyc' -exec rm -f {} +
find . -name '*.pyo' -exec rm -f {} +

0 comments on commit 7a24eaa

Please sign in to comment.