forked from flutter/packages
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add scripts for flutter/tests (flutter#80)
- Loading branch information
1 parent
ddcbd9d
commit ef46db1
Showing
2 changed files
with
28 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
REM This file is used by | ||
REM https://github.com/flutter/tests/tree/master/registry/flutter_packages.test | ||
REM to run the tests of certain packages in this repository as a presubmit | ||
REM for the flutter/flutter repository. | ||
REM Changes to this file (and any tests in this repository) are only honored | ||
REM after the commit hash in the "flutter_packages.test" mentioned above has | ||
REM been updated. | ||
REM Remember to also update the Posix version (customer_testing.sh) when | ||
REM changing this file. | ||
|
||
cd packages/animations | ||
flutter test |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
#!/bin/bash | ||
|
||
# This file is used by | ||
# https://github.com/flutter/tests/tree/master/registry/flutter_packages.test | ||
# to run the tests of certain packages in this repository as a presubmit | ||
# for the flutter/flutter repository. | ||
# Changes to this file (and any tests in this repository) are only honored | ||
# after the commit hash in the "flutter_packages.test" mentioned above has been | ||
# updated. | ||
# Remember to also update the Windows version (customer_testing.bat) when | ||
# changing this file. | ||
|
||
set -e | ||
|
||
cd packages/animations | ||
flutter test |