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 35ef63e commit a768642Copy full SHA for a768642
tests/run_all_tests.sh
@@ -72,8 +72,11 @@ uv pip install -e "..[full]"
72
73
# cleanup
74
deactivate
75
-# trash test_venv temp
76
-rm -r test_venv temp wdoc_user_cache_dir
+# trash test_venv temp if present
+[ -e "temp" ] && rm -r temp
77
+[ -e "test_env" ] && rm -r test_env
78
+[ -e "wdoc_user_cache_dir" ] && rm -r wdoc_user_cache_dir
79
+[ -e "__pycache__" ] && rm -r __pycache__
80
81
cd ..
82
echo "Succesfuly ran all tests"
0 commit comments