We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I have a monorepo that looks like this:
apps my-app packages some-package
When running a test in either /apps/my-app or /packages/some-package it tries to run flutter in the root / of the repository.
/apps/my-app
/packages/some-package
/
Test is run in a file /packages/some-package/test/some/cool_test.dart
/packages/some-package/test/some/cool_test.dart
flutter is run in /packages/some-package
flutter
flutter is run in /
Which fails, because flutter can't find a pubspec file.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I have a monorepo that looks like this:
When running a test in either
/apps/my-app
or/packages/some-package
it tries to run flutter in the root/
of the repository.Scenario
Test is run in a file
/packages/some-package/test/some/cool_test.dart
Expected
flutter
is run in/packages/some-package
Actual
flutter
is run in/
Which fails, because flutter can't find a pubspec file.
The text was updated successfully, but these errors were encountered: