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 a4b8fbb commit c670989Copy full SHA for c670989
tests/robotcode/language_server/robotframework/parts/conftest.py
@@ -36,7 +36,7 @@ async def protocol(request: Any) -> AsyncIterator[RobotLanguageServerProtocol]:
36
robotcode_cache_path = root_path / ".robotcode_cache"
37
38
if robotcode_cache_path.exists():
39
- shutil.rmtree(robotcode_cache_path)
+ shutil.rmtree(robotcode_cache_path, ignore_errors=True)
40
41
server = RobotLanguageServer()
42
try:
0 commit comments