-
Notifications
You must be signed in to change notification settings - Fork 33
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
test(megolm): Add mutation tests #142
test(megolm): Add mutation tests #142
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #142 +/- ##
==========================================
+ Coverage 89.41% 90.47% +1.05%
==========================================
Files 32 32
Lines 1786 1785 -1
==========================================
+ Hits 1597 1615 +18
+ Misses 189 170 -19 ☔ View full report in Codecov by Sentry. |
Looks like the clippy errors are due to a new rule on nightly. Edit: Attempting to fix them in #145. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good, though there's a stray println
left over.
Hm, looks like the CI ran on an ARM Mac
but then installed the x86 rust toolchain
which results in
🤔 |
So according to https://docs.github.com/en/actions/using-github-hosted-runners/about-github-hosted-runners/about-github-hosted-runners#standard-github-hosted-runners-for-private-repositories @poljar do you want CI for macOS to run on both x86 and ARM Mac or would just ARM be enough? |
Hmm, obviously both are better, but I'm happy to have any CI for Mac. So ARM only would be enough. |
02f8a6d
to
1f1d3f1
Compare
1f1d3f1
to
7fde6e6
Compare
Since the CI job was already set up via a matrix strategy, it was actually pretty easy to just build on both. I hope it's ok that I added the small change in this PR directly. |
Yeah that's fine. |
I don't know why codecov is hanging now. I already tried it three or four times by now. 🤷♂️ |
Hmm, no idea either. Maybe it'll untangle itself once merged. |
This fixes the following issues:
This also gets us to +90% coverage. 🙂
Relates to: #78