| #!/bin/bash |
| # Copyright 2020 The Flutter Authors. All rights reserved. |
| # Use of this source code is governed by a BSD-style license that can be |
| # found in the LICENSE file. |
| |
| # Fast fail the script on failures. |
| set -e |
| |
| # So cd doesn't print the path it changes to. |
| unset CDPATH |
| |
| # So that developers can run this script from anywhere and it will work as |
| # expected. |
| SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" >/dev/null && pwd)" |
| REPO_DIR="$(dirname "$SCRIPT_DIR")" |
| |
| cd "$REPO_DIR" |
| |
| # Run the tests. |
| pub run --enable-experiment=non-nullable test |