Claudio Jolowicz

Results 115 comments of Claudio Jolowicz

I can confirm that the following `paths`-based configuration works well for combining coverage data across platforms: ```toml [tool.coverage.paths] source = ["src", "*/site-packages"] tests = ["tests", "*/tests"] [tool.coverage.run] source = ["yourpackage",...

FWIW the paths in the combined coverage look like this: ``` ❯ sqlite3 .coverage 'select * from file' 1|tests/__init__.py 2|tests/test_main.py 3|src/cookiecutter_hypermodern_python_instance/__init__.py 4|src/cookiecutter_hypermodern_python_instance/__main__.py 5|tests\__init__.py 6|tests\test_main.py ```

Something in `run-p` reads from stdin and throws away the result. That's not good practise for a command line utility because it breaks shell scripts. Try any other command, and...

Here's some context: https://stackoverflow.com/questions/55751619/why-does-this-fish-while-loop-terminate-after-a-single-iteration

The issue is caused by the way `npm-run-all` handles `process.stdin` when creating a child process. The correct method would be to let the child process inherit stdin from the parent....

My bundle.js still contains `var _process$env = process.env`, leading to `ReferenceError: process is not defined`. The actual variables defined using object destructuring are replaced with their values, as expected. -...

The expected branch is master because, as of this writing, that's the default branch of https://github.com/libgit2/pygit2, which I used in my example. FWIW I share your sentiments about inclusive naming...

Thanks @ericwb for taking a stab at this, and @sigmavirus24 for providing your thoughts. To be clear, my goal here is to ensure that Bandit will continue to work when...

Here's the repro for this issue: ```sh ❯ virtualenv --no-setuptools venv ❯ . venv/bin/activate ❯ pip install bandit ❯ bandit --help Traceback (most recent call last): File "/Users/cjolowicz/Code/github.com/PyCQA/bandit/venv/bin/bandit", line 5,...

> I'm not Google. I don't know what this relates to, but I'm going to bow out of this for now. Please consider this issue a friendly heads up that...