Skip to content

Commit

Permalink
Add scripts for flutter/tests (flutter#80)
Browse files Browse the repository at this point in the history
  • Loading branch information
goderbauer authored Feb 3, 2020
1 parent ddcbd9d commit ef46db1
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 0 deletions.
12 changes: 12 additions & 0 deletions customer_testing.bat
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
16 changes: 16 additions & 0 deletions customer_testing.sh
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

0 comments on commit ef46db1

Please sign in to comment.