ws1088

Results 6 issues of ws1088

test.conf: ```conf foo { baz = ["a"] baz += "b" } ``` code: ```py from pyhocon import ConfigFactory spec = ConfigFactory.parse_file('./test.conf')) print(spec) ``` output: ``` ConfigTree([('foo', ConfigTree([('baz', ' b')]))]) ```...

Hi, When I run code coverage with `pytest --cov=xxx` it shows that the lines inside my class method is covered but not the method signature line: ![image](https://user-images.githubusercontent.com/3947543/109432625-eb1a8e80-79c0-11eb-82ee-c2d50b8c9a86.png) Same for the...

would be nice to do auto complete of filenames, like ipython. if we don't want to do this in general context, maybe we can do this when specifying the value...

if I add a folder with tests into a workspace and there is no pytest.ini in that folder and the pytest.ini is in the folder parent directory, test explorer will...

I wonder if it would be possible to enable this extension as web extension as well. it would be awesome... https://code.visualstudio.com/api/extension-guides/web-extensions https://vscode.dev/

enhancement

Hi, I am using Google style docstring in vscode and would like to write docstring for vscode intellisense and sphinx to generation HTML documentations. This is a typical docstring: ```python...