Skip to content

Commit

Permalink
rfctr(dev): use more performant fd for clean
Browse files Browse the repository at this point in the history
  • Loading branch information
scanny committed May 1, 2024
1 parent e531576 commit 3f56b7d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,8 @@ build:
$(BUILD)

clean:
find . -type f -name \*.pyc -exec rm {} \;
# find . -type f -name \*.pyc -exec rm {} \;
fd -e pyc -I -x rm
rm -rf dist *.egg-info .coverage .DS_Store

cleandocs:
Expand Down
1 change: 1 addition & 0 deletions requirements-test.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,6 @@
behave>=1.2.3
pyparsing>=2.0.1
pytest>=2.5
pytest-coverage
pytest-xdist
ruff

0 comments on commit 3f56b7d

Please sign in to comment.