-
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
Add Flutter DevTools tests to test registry. #267
Conversation
1e25b5e
to
0b816d3
Compare
I'm seeing a discrepancy between the results on the CI and the analysis results I get locally when running this script. analyze.sh #!/bin/bash -e
# Script to analyze the devtools repo for the flutter/tests registry
# https://github.com/flutter/tests
# This is executed as a pre-submit check for every PR in flutter/flutter
which dart
dart --version
which flutter
flutter --version
cd tool
flutter pub get
dart bin/devtools_tool.dart pub-get
dart bin/devtools_tool.dart analyze
cd .. Test results: https://github.com/flutter/tests/actions/runs/6342602352/job/17228711531?pr=267 (starting at line 1231)
Succeeds with no errors:
|
The 'setup' step added here should unblock this PR flutter/flutter#135726 |
5d9d386
to
7ada7d4
Compare
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.
Original attempt here: #258.
Fixes flutter/devtools#4433.