-
-
Notifications
You must be signed in to change notification settings - Fork 277
Fix linters and ignore web tests for vm only tests #861
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
Conversation
| enum DataCategory { | ||
| all, | ||
| data_category_default, // default | ||
| dataCategoryDefault, // default |
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.
@denrase I hope this is fine, since camelCase is recommended by the new linter.
Codecov Report
@@ Coverage Diff @@
## main #861 +/- ##
==========================================
+ Coverage 90.33% 92.43% +2.10%
==========================================
Files 119 26 -93
Lines 3785 806 -2979
==========================================
- Hits 3419 745 -2674
+ Misses 366 61 -305 Continue to review full report at Codecov.
|
|
|
| - name: Test chrome | ||
| if: runner.os != 'macOS' | ||
| if: runner.os == 'Linux' |
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.
#500
Right now it only happens on Windows, let's see if that helps.
They fixed it. |
brustolin
left a comment
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!
📜 Description
#skip-changelog
Dart 2.17 and Flutter 3.0 have new linters that needed to be fixed.
Added the new linter libs instead of the old ones.
Vm only tests are not run on web anymore.
Excluded windows from running web tests, since it was flaky.
💡 Motivation and Context
Closes #507
Closes #860
💚 How did you test it?
📝 Checklist
🔮 Next steps