We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f83f177 commit f3e6d37Copy full SHA for f3e6d37
.github/scripts/tests_build.sh
@@ -11,10 +11,11 @@ USAGE:
11
"
12
13
function clean(){
14
- rm -rf tests/**/build*/
15
rm -rf tests/.pytest_cache
16
- rm -rf tests/**/__pycache__/
17
- rm -rf tests/**/*.xml
+ find tests/ -type d -name 'build*' -exec rm -rf "{}" \+
+ find tests/ -type d -name '__pycache__' -exec rm -rf "{}" \+
+ find tests/ -name '*.xml' -exec rm -rf "{}" \+
18
+ find tests/ -name 'result_*.json' -exec rm -rf "{}" \+
19
}
20
21
SCRIPTS_DIR="./.github/scripts"
0 commit comments