-
Notifications
You must be signed in to change notification settings - Fork 115
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
Update flutter_devtools.test #314
Conversation
To pick up flutter/devtools#6818, to unblock Dart -> Flutter rolls.
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.
LGTM!
Hi @DanTup, I'm trying to roll flutter/devtools into flutter/tests, but it looks like there's an issue with the change here flutter/devtools#6776, which is causing |
I'm not sure why things wouldn't be consistent across platforms, but do you know where the Flutter SDK is being set up in this case? It looks like flutter_customer_tests/setup.sh assumes Flutter already exists but I'm not sure where it's set up. In the PR you linked, we made devtools_tool always expect to use a Flutter SDK from the However, it's not clear to me if the tests here want to always run with the latest one (in which case we may need a way to override this, or we need it tbe cloned or symlinked into (cc @kenzieschmoll in case she has any opinions/preferences on how this is solved) |
The purpose of the customer tests is to test against tip-of-tree Flutter, to ensure that changes to Flutter don't unintentionally break those tests. So in that scenario, running against the Flutter SDK from the environment rather that one pinned to an earlier version would be working as intended. |
@DanTup, offline @jacob314 recommended we revert at flutter/devtools#6820 to unblock the rolls. |
Makes sense to me - I'll tweak it to support this (perhaps by adding an env variable to allow forcing use of Flutter from |
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.
LGTM!
To pick up flutter/devtools#6818, to unblock Dart -> Flutter rolls.