Skip to content

Commit e328fe9

Browse files
committed
no tests yet
1 parent 52d2aa6 commit e328fe9

File tree

4 files changed

+4
-18
lines changed

4 files changed

+4
-18
lines changed

.travis.yml

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,6 @@ jobs:
1111
script: ./tool/travis.sh dartanalyzer
1212
env: PKG="example"
1313
dart: dev
14-
- stage: unit_test
15-
script: ./tool/travis.sh test
16-
env: PKG="example"
17-
dart: dev
1814
- stage: analyzer_and_format
1915
script: ./tool/travis.sh dartfmt
2016
env: PKG="webdev"
@@ -23,14 +19,9 @@ jobs:
2319
script: ./tool/travis.sh dartanalyzer
2420
env: PKG="webdev"
2521
dart: dev
26-
- stage: unit_test
27-
script: ./tool/travis.sh test
28-
env: PKG="webdev"
29-
dart: dev
3022

3123
stages:
3224
- analyzer_and_format
33-
- unit_test
3425

3526
# Only building master means that we don't run two builds for each pull request.
3627
branches:

example/.mono_repo.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@ stages:
66
- analyzer_and_format:
77
- dartfmt
88
- dartanalyzer: --fatal-infos --fatal-warnings .
9-
- unit_test:
10-
- test
9+
# - unit_test:
10+
# - test

tool/travis.sh

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,6 @@ while (( "$#" )); do
2929
echo -e 'dartfmt -n --set-exit-if-changed .'
3030
dartfmt -n --set-exit-if-changed . || EXIT_CODE=$?
3131
;;
32-
test) echo
33-
echo -e '\033[1mTASK: test\033[22m'
34-
echo -e 'pub run test'
35-
pub run test || EXIT_CODE=$?
36-
;;
3732
*) echo -e "\033[31mNot expecting TASK '${TASK}'. Error!\033[0m"
3833
EXIT_CODE=1
3934
;;

webdev/.mono_repo.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@ stages:
66
- analyzer_and_format:
77
- dartfmt
88
- dartanalyzer: --fatal-infos --fatal-warnings .
9-
- unit_test:
10-
- test
9+
# - unit_test:
10+
# - test

0 commit comments

Comments
 (0)