
This patch again stops Traivs from uploading docs now that the new infra seems to be better at it. This reverts commit 196c881c5bb17dd554284a08b692c037c70c7908.
20 lines
602 B
Bash
Executable File
20 lines
602 B
Bash
Executable File
#!/bin/bash
|
|
set -ex
|
|
|
|
export PATH="$PWD/bin:$PATH"
|
|
|
|
# analyze all the Dart code in the repo
|
|
flutter analyze --flutter-repo --no-current-directory --no-current-package --congratulate
|
|
|
|
(cd packages/cassowary; pub run test -j1)
|
|
(cd packages/flutter; flutter test)
|
|
(cd packages/flutter_sprites; flutter test)
|
|
(cd packages/flutter_tools; pub run test -j1)
|
|
# (cd packages/flutter_test; ) # No tests to run.
|
|
(cd packages/flx; pub run test -j1)
|
|
(cd packages/newton; pub run test -j1)
|
|
# (cd packages/playfair; ) # No tests to run.
|
|
# (cd packages/updater; ) # No tests to run.
|
|
|
|
(cd examples/stocks; flutter test)
|