Skip to content

Commit 5216af1

Browse files
committed
skip integration tests on the bot
1 parent 8d0a14a commit 5216af1

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

pkgs/appengine/test/integration/grpc_datastore_test.dart

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,13 @@ main() async {
1818
final endpoint = 'datastore.googleapis.com';
1919

2020
final String nsPrefix = Platform.operatingSystem;
21+
22+
// Early exit if trying to run this integration test on the bot.
23+
24+
if (onBot()) {
25+
return;
26+
}
27+
2128
await withAuthenticator(OAuth2Scopes,
2229
(String project, grpc.HttpBasedAuthenticator authenticator) async {
2330
test.group('grpc datastore', () {

0 commit comments

Comments
 (0)