File tree Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -25,14 +25,19 @@ del /s /q *.pyc 1>nul 2>&1
25
25
del /s /q *.pyo 1 > nul 2 >& 1
26
26
FOR /d /r %%d IN (" __pycache__" ) DO @ IF EXIST " %%d " rd /s /q " %%d "
27
27
28
+ @ REM Removing version control backup files
29
+ del /s /q *~ 1 > nul 2 >& 1
30
+ del /s /q *.bak 1 > nul 2 >& 1
31
+ del /s /q *.orig 1 > nul 2 >& 1
32
+
28
33
@ REM Removing localization template files
29
34
if exist doc\locale\pot ( rmdir /s /q doc\locale\pot )
30
35
31
36
@ REM Removing files/directories related to Coverage and pytest
32
37
if exist .coverage ( del /q .coverage )
33
38
if exist coverage.xml ( del /q coverage.xml )
34
39
if exist htmlcov ( rmdir /s /q htmlcov )
35
- del /q .coverage.* 1 > nul 2 >& 1
40
+ del /s / q .coverage.* 1 > nul 2 >& 1
36
41
if exist sitecustomize.py ( del /q sitecustomize.py )
37
42
if exist .pytest_cache ( rmdir /s /q .pytest_cache )
38
43
You can’t perform that action at this time.
0 commit comments