Dustin Martin

Results 18 comments of Dustin Martin

> Just ran into this bug and worked around it with `--cov-config=.coveragerc`. Symptomology is similar to @joshfriend above, but my project uses `pyproject.toml` and expected coverage.py to find its configuration...

> Tried this and it didn't work -- is your project multiprocess as well? Hmm, our project itself doesn't use multiprocessing so I suppose the scenario is slightly different, but...

Further pointing to what looks like a race condition, prefixing commands with `sleep 0.1;` ensures that their output is always read.

On current master / macOS 12.2, reverting* [this commit](https://github.com/xtermjs/xterm.js/commit/5dc57a1305cd7eca10bf01793645441f711c2048) appears to fix the issue. There is a "stutter" where the `tooMuchOutput` string is interrupted and read twice if present (might...

If anyone is looking for a simple workaround for this, I've found that just wrapping pytest with a script like this works pretty well. ```bash #!/usr/bin/env bash set -euo pipefail...

This seems like expected behavior IMO. From the [Django documentation](https://docs.djangoproject.com/en/dev/topics/db/models/#overriding-predefined-model-methods): > Note that the [delete()](https://docs.djangoproject.com/en/dev/ref/models/instances/#django.db.models.Model.delete) method for an object is not necessarily called when [deleting objects in bulk using a...

This may help: https://django-constance.readthedocs.io/en/latest/index.html >django-constance’s hashes generated in different instances of the same application may differ, preventing data from being saved. > >Use this option in order to skip hash...

@chansuke @rbtcollins Hi, I don't have much experience with rustup's internals nor the time to dig too deeply into them right now, but I have been affected by https://github.com/PyO3/pyo3/issues/1708 and...

I've come across what seems to be a fairly nice solution for checking nested permissions, at least for a simple use case: Going with the house/window example from earlier in...

For anyone else who finds themselves here: In order to use `cargo-upgrade` currently (on a fresh Rust install that has otherwise been using the new default sparse index protocol), it...