We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c115cb6 commit 01c12cdCopy full SHA for 01c12cd
scripts/clean_up.bat
@@ -25,14 +25,19 @@ del /s /q *.pyc 1>nul 2>&1
25
del /s /q *.pyo 1>nul 2>&1
26
FOR /d /r %%d IN ("__pycache__") DO @IF EXIST "%%d" rd /s /q "%%d"
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
+
33
@REM Removing localization template files
34
if exist doc\locale\pot ( rmdir /s /q doc\locale\pot )
35
36
@REM Removing files/directories related to Coverage and pytest
37
if exist .coverage ( del /q .coverage )
38
if exist coverage.xml ( del /q coverage.xml )
39
if exist htmlcov ( rmdir /s /q htmlcov )
-del /q .coverage.* 1>nul 2>&1
40
+del /s /q .coverage.* 1>nul 2>&1
41
if exist sitecustomize.py ( del /q sitecustomize.py )
42
if exist .pytest_cache ( rmdir /s /q .pytest_cache )
43
0 commit comments