File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 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
1515uv venv test_venv --python 3.12.11
@@ -73,7 +73,7 @@ uv pip install -e "..[full]"
7373# cleanup
7474deactivate
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
7878cd ..
7979echo " Succesfuly ran all tests"
You can’t perform that action at this time.
0 commit comments