Skip to content

Commit 3f56b7d

Browse files
committed
rfctr(dev): use more performant fd for clean
1 parent e531576 commit 3f56b7d

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

Makefile

+2-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,8 @@ build:
3030
$(BUILD)
3131

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

3637
cleandocs:

requirements-test.txt

+1
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,6 @@
22
behave>=1.2.3
33
pyparsing>=2.0.1
44
pytest>=2.5
5+
pytest-coverage
56
pytest-xdist
67
ruff

0 commit comments

Comments
 (0)