-
Notifications
You must be signed in to change notification settings - Fork 214
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
Support the null-safe glob package #1400
Comments
Blocked on dart-lang/sdk#44429 |
Actually, I can confidently say the package works so I will go ahead and update the constraint even though we can't resolve for it right now (we are using the latest version of glob internally and in the sdk). You will still be blocked on analyzer though. |
What's the plan going forward for the analyzer? The migration guide suggests that tests should be run in sound null-safety mode, but as I understand it that's not possible if |
|
Ah, got it. Are |
Yes, this works just like all the normal defaults. So since the entrypoint (bin/test.dart) is opted out it runs in unsound mode. The test package does the same for your tests, it will run them in a mode determined by the language version of the test being ran. |
test_core
currently depends onglob ^1.0.0
, which doesn't support null-safety. This means that a package that uses bothtest
andglob
can't upgrade both to null-safe versions at once. Please release a new version that supports the latestglob
(and any other null-safe dependency versions that have since been released).The text was updated successfully, but these errors were encountered: