
This reverts commit 9497fb56d44b21a701b9c9da37af8f7c36fe2120. This patch broke the dartdoc step on the bots.
25 lines
784 B
Bash
Executable File
25 lines
784 B
Bash
Executable File
#!/bin/bash
|
|
set -ex
|
|
|
|
export PATH="$PWD/bin:$PWD/bin/cache/dart-sdk/bin:$PATH"
|
|
|
|
# analyze all the Dart code in the repo
|
|
flutter analyze --flutter-repo
|
|
|
|
# keep the rest of this file in sync with
|
|
# //chrome_infra/build/scripts/slave/recipes/flutter/flutter.py
|
|
# see https://github.com/flutter/flutter/blob/master/infra/README.md
|
|
|
|
(cd packages/flutter; flutter test)
|
|
(cd packages/flutter_driver; dart -c test/all.dart)
|
|
(cd packages/flutter_sprites; flutter test)
|
|
(cd packages/flutter_test; flutter test)
|
|
(cd packages/flutter_tools; dart -c test/all.dart)
|
|
(cd packages/flx; dart -c test/all.dart)
|
|
|
|
(cd dev/manual_tests; flutter test)
|
|
(cd examples/hello_world; flutter test)
|
|
(cd examples/layers; flutter test)
|
|
(cd examples/material_gallery; flutter test)
|
|
(cd examples/stocks; flutter test)
|