We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c9922f0 commit 1276e33Copy full SHA for 1276e33
tool/travis.sh
@@ -11,9 +11,7 @@ set -ex
11
export PATH="$PATH":"~/.pub-cache/bin"
12
DART_VERSION=`dart --version 2>&1 | awk '{print $4}'`
13
# Do not run coverage on non-dev builds or non-Linux platforms.
14
-# Disable coverage on dev builds and switch to stable until
15
-# dart-lang/sdk#43487 is fixed.
16
-if ! echo "${DART_VERSION}" | grep -q stable || ! uname | grep -q Linux ; then
+if ! echo "${DART_VERSION}" | grep -q dev || ! uname | grep -q Linux ; then
17
unset COVERAGE_TOKEN
18
fi
19
0 commit comments