Merged
Conversation
Collaborator
We maybe should also add |
sam-mosleh
commented
Mar 10, 2026
Contributor
Author
sam-mosleh
left a comment
There was a problem hiding this comment.
Thanks for the review @Otto-AA
Collaborator
|
Thank you for the updates! Also nice that you added the small E2E test for this :) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
First time installing
mutmut— excited to try it out, but ran into a couple of issues on my machine that blocked me from running it at all on my MacBook running Tahoe v26.3.1. This PR fixes both:Fix 1: Segfault on startup due tosetproctitleOn macOS,mutmutcrashes immediately with a segfault. After some digging, the culprit is the call tosetproctitlewhich fails simply because forking on macOS is inherently unsafe. I want to be upfront that this may not be the right long-term fix. I went with the simplest change to unblock myself, but I'm very open to guidance from you (@boxed) on the preferred approach.Fix 2: Coverage configuration not being respected
Even after unblocking the segfault, I noticed that coverage reports were not picking up the project's coverage configuration (e.g.,
.coveragercor[tool.coverage]inpyproject.toml). For example omit configs fail to locate files because it is called from the parentmutantsdirectory.