Bill Schnurr

Results 205 comments of Bill Schnurr

Thanks for logging an issue. Please see https://github.com/microsoft/pylance-release/blob/main/TROUBLESHOOTING.md#filing-an-issue For how to catching the log file. If you can share a code sample or repo that reproduces the problem that would...

also for the logs you need to copy the output window. "Select "View: Toggle Output" from the command palette (Ctrl+Shift+P on Windows/Linux, Command+Shift+P on macOS), then select "Python Language Server"...

@ale-dg I see this error at the bottom of the logs. "Workspace indexing has hit its upper limit: 2000 files" did you try turning off indexing? see below ``` "python.analysis.indexing":...

oh sorry. i mean you have to exclude any folders yourself, ["cdk.out"] was just an example. ``` "python.analysis.exclude": [" your folder here"], ``` but does it seem fast now? after...

thank you for the issue. yes there seems to be an issue with fixtures that use yield to return a generator. there was a slight type in your `def somef1:(self)`...

Thanks for the issue. For the best experience I recommend adding type annotation `mocker: MockerFixture` like in the pytest docs here https://pypi.org/project/pytest-mock/3.7.0/ ```python from pytest_mock import MockerFixture def test_foo(mocker: MockerFixture)...

related to https://github.com/microsoft/pylance-release/issues/5718 fixture using yield

sounds like duplicate of https://github.com/microsoft/pylance-release/issues/5718 Better support for fixtures that return generatros