-
Notifications
You must be signed in to change notification settings - Fork 17
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
More work on threat model #136
Conversation
I don't know why we are getting these errors. My hunch is that we are running with a different toolchain than I used locally. Annoying. |
cc @oli-obk any advice here? |
Yes, ui tests can change whenever you update your compiler. You could ignore stderr entirely and only rely on annotations in the test file if that is sufficient for your use case. Otherwise, a rustup toolchain file is useful to ensure consistency across all contributors |
@oli-obk I think annotations would suffice, how do I make that change? |
I think Oli is referring to the |
We'll need to switch ui_test to using |
@oli-obk like that? |
Yes, this is how bevy does it, too. If you still want it updated regularly, a cronjob could auto-open PRs if the output changes |
Oh, that'd be useful, no idea how hard that'd be to set up tho |
Finished write-up, added some tests