[ci] Enable tests on stable (#886)

This commit is contained in:
stuartmorgan
2022-02-18 16:39:22 -05:00
committed by GitHub
parent a27a35842c
commit cd240893e8

View File

@ -73,8 +73,21 @@ task:
depends_on: depends_on:
- format+analyze - format+analyze
- name: test - name: test
# Exclude flutter_image; its tests need a test server, so are run via local_tests.sh env:
script: ./script/tool_runner.sh test --exclude=flutter_image matrix:
CHANNEL: "master"
CHANNEL: "stable"
script:
# Exclude:
# - flutter_image; its tests need a test server, so are run via
# local_tests.sh.
# - rfw on stable; it includes golden tests whose results differ
# between branch
- if [[ "$CHANNEL" == "master" ]]; then
- ./script/tool_runner.sh test --exclude=flutter_image
- else
- ./script/tool_runner.sh test --exclude=flutter_image,rfw
- fi
depends_on: depends_on:
- format+analyze - format+analyze
- name: android-build+platform-tests - name: android-build+platform-tests