Ignas Anikevicius
Ignas Anikevicius
I am not familiar with this error.
@MachComputing, could you please check if you are still facing the issue with the latest releases?
What @adzenith has suggested is the preferred way of providing overrides. Providing different kinds of targets should be a separate feature request so that we can look at the use...
I wrote about this in https://anikevicius.lt/blog/python-lazy-loading-and-namespace-pkgs/ and I am not sure if there is a good way to solve this other than have a single folder where we install all...
It is hard to understand what kind of setup you have to help you. Could you paste a minimal example that reproduces the error in addition to the source of...
Another way to do this would be to support a `NoneSubject` because quite often `None` is a special value from the business logic point of view and it is definitely...
+1 for this feature, right now I have to change: ``` that_str(got).equals(want) ``` to ``` that_collection(got.splitlines()).contains_exactly(want.splitlines()) ``` However, this is not really equivalent, as the line endings may interfere with...
At the moment one possible workaround is to: ``` someCollection.ShouldSatisfyAllConditions( someCollection.Select(x => new Action(() => x.ShouldMatch("[lL]ower")).ToArray()); ``` Not ideal, but you could have an extension method that implements this.
In general looks good to me, but would love this to be mentioned in the `CHANGELOG.md` file. Could you please update the `Added` section in there?
The commits get squashed when merged and then the PR description becomes the commit message for the squashed commit.