Kyle Benesch

Results 315 comments of Kyle Benesch

Are you sure `-n1` is correct? The `pytest-xdist` docs seem to show the syntax as: `-n 1`

In-process mode reads, compiles, and executes the script. The script itself won't share data but anything it imports will be shared across all runs of all scripts for the entire...

The downside to actually setting up a fresh state this that any mocks will be broken. So I'm not sure it's even a good idea to try and fix this.

Yeah, I was just greatly overthinking this for a moment. Inprocess is good to have, but having it as the default might cause more issues like the one seen here....

Windows often has locale issues and will refuse to use a UTF-8 encoding until it's forced to with [locale.setlocale](https://docs.python.org/3/library/locale.html). Python has a forced UTF8 mode but I'm not sure it...

Later versions of Ubuntu will provide later versions of SDL via APT. Try adding `dist: bionic` or `dist: focal` to the TravisCI config file and check the installed version of...

I feel that anything updating the wheel tags should reuse the `_check_and_update_wheel_name` and `_update_wheelfile` functions.

> `_update_wheelfile` looks good, I'll update it to use that (although its implementation is weird in that it doesn't use `read_pkg_info` and `write_pkg_info`) I completely missed those functions. It would...

> I left it as a flag as I wanted to double check about making it the default behavior. Since that would be a breaking change, I just wanted to...

Keep in mind that this situation is a result of `delocate-fuse` being deployed in such a broken state in the first place. > Am I right in thinkng this is...