-
Notifications
You must be signed in to change notification settings - Fork 112
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
string mutation causes UnicodeDecodeError #253
Comments
Are you sure this is the mutation that fails? Is that what you get with "position 35" in the error would be the column 35, not the line 35 of the file. |
the position is indeed 35, but coincidently also the row I referred to :) when reporting the error, the position changes, as it is using a random string from Hypothesis testing.
This is quite weird. I have seen before in our project those errors that comes from normalization, but I don't get how and why this mutant causes them, only when running through mutmut. |
Weird. You could add a |
I just released mutmut 3, which is a big rewrite. I believe this issue no longer applies anymore. Feel free to reopen it if it still exists. |
I am working on a project that includes text normalization and using mutmut for mutation testing.
mutmut is mutating line 35 to be
normalized = 'XXXX'
instead ofnormalized = ''
I then get the following error:
when I run my tests regularly they work, and when I apply this change manually and run my tests, they work too.
Have any Idea what can happen that causes this failure?
The text was updated successfully, but these errors were encountered: