Simon Lanzmich
Simon Lanzmich
Currently, `mermaid_cmd` cannot be set to a command containing arguments / multiple words, e.g. `npx mmdc`. Neither ```python mermaid_cmd = "npx mmdc" ``` nor ```python mermaid_cmd = ["npx", "mmdc"] ```...
To support words (paths, arguments) containing whitespace, shell-compatible quotes or a list of strings can be supplied. This fixes issue #89 in a more robust way than #79.
**Bug Report** I'm getting a false positive from the following example ```python from typing import Protocol from typing_extensions import Self class P(Protocol): # Removing the property makes the problem disappear...
# Summary I am working on a custom coverage plugin that returns custom file tracers for Python files. When I use this coverage plugin together with pytest-xdist, it fails when...