Skip to content

Commit 35ef63e

Browse files
less verbose test removal of temp folders
Signed-off-by: thiswillbeyourgithub <26625900+thiswillbeyourgithub@users.noreply.github.com>
1 parent c149f5d commit 35ef63e

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

tests/run_all_tests.sh

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ set -u
66

77
# cleanup previous
88
[[ "$(type deactivate)" == "deactivate is a shell function"* ]] && deactivate
9-
[ -e "temp" ] && rm -rv temp
10-
[ -e "test_env" ] && rm -rv test_env
11-
[ -e "wdoc_user_cache_dir" ] && rm -rv wdoc_user_cache_dir
12-
[ -e "__pycache__" ] && rm -rv __pycache__
9+
[ -e "temp" ] && rm -r temp
10+
[ -e "test_env" ] && rm -r test_env
11+
[ -e "wdoc_user_cache_dir" ] && rm -r wdoc_user_cache_dir
12+
[ -e "__pycache__" ] && rm -r __pycache__
1313

1414
# setup venv
1515
uv venv test_venv --python 3.12.11
@@ -73,7 +73,7 @@ uv pip install -e "..[full]"
7373
# cleanup
7474
deactivate
7575
# trash test_venv temp
76-
rm -rv test_venv temp wdoc_user_cache_dir
76+
rm -r test_venv temp wdoc_user_cache_dir
7777

7878
cd ..
7979
echo "Succesfuly ran all tests"

0 commit comments

Comments
 (0)