You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When the home directory contains only files starting with dot then the test_complete_expanduser fails like this:
___________________________ test_complete_expanduser ___________________________
Script = functools.partial(<class 'jedi.api.Script'>, environment=<SameEnvironment: 3.9.19 in /usr>)
def test_complete_expanduser(Script):
possibilities = os.scandir(expanduser('~'))
non_dots = [p for p in possibilities if not p.name.startswith('.') and len(p.name) > 1]
> item = non_dots[0]
E IndexError: list index out of range
test/test_api/test_completion.py:93: IndexError
The text was updated successfully, but these errors were encountered:
When the home directory contains only files starting with dot then the
test_complete_expanduser
fails like this:The text was updated successfully, but these errors were encountered: