Felipe A. Hernandez
Felipe A. Hernandez
Example file with line coverage: ```json !coverage.py: This is a private format, don't read it directly!{"lines":{"/absolute/path/to/file.py":[3,4,5,6,7,8,9,10]}} ``` Example file with branch coverage: ```json !coverage.py: This is a private format, don't...
> My project kcov, https://github.com/SimonKagstrom/kcov, supports collecting Python code coverage and outputting it in a format which coverage-gutters understands. I use it for C/C++ code, but since the output is...
starting from [coverage 6.3](https://pypi.org/project/coverage/6.3/), [lcov file generation is now supported](https://github.com/nedbat/coveragepy/issues/587) via its new 'lcov' command, no extra dependencies required
AGBmode anyone?
Also, current browsepy development lives at https://gitlab.com/ergoithz/browsepy/tree/next but it's ok if you want to keep working on current release until project migration is finished (I will care myself to update...
Sadly, browsepy's feature scope is closed, but any extra functionality could be added as plugin (as long as it complies a few rules http://ergoithz.github.io/browsepy/builtin_plugins.html#contributing-builtin-plugins). A proper authentication plugin is on...
You can do it via command line, so pywinery will ask you which prefix you want to run it on I'll keep this issue open to include this functionality for...
This seems to be a bug on wrapper.cfg parsing, it should be fixed after https://github.com/ergoithz/pywinery/commit/98c23d99aa695bed62f30e92fa82e4164c2c9180 @Thermionix can you test this new "hotfix" release I just made https://github.com/ergoithz/pywinery/releases/tag/0.3.3 ?
See https://github.com/flatpak/xdg-desktop-portal/issues/820
Workaround (overriding `method` property): ```python import jsonrpc.jsonrpc2 jsonrpc.jsonrpc2.JSONRPC20Request.method = None ```