Commit 7df854ad authored by Jason Simmons's avatar Jason Simmons Committed by GitHub

Disable the coverage shard in Travis (#11512)

In a Travis environment, the test package is exiting the process after
completing the tests.
See dart-lang/test@d1057c4

The flutter test command calls the test package's main() and then expects to
do other work afterward.  The exit prevents flutter test from writing the
new coverage results, causing the coveralls tool to run against an old
lcov.info file.
parent cf8d11ad
......@@ -19,7 +19,11 @@ install:
env:
- SHARD=analyze
- SHARD=tests
- SHARD=coverage
# Temporarily disable the coverage shard. The test package is exiting
# the process after tests run, preventing the flutter test command from
# writing coverage results.
# TODO(jsimmons): reenable coverage when a new test package is available.
# - SHARD=coverage
- SHARD=docs
before_script:
- ./dev/bots/travis_setup.sh
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment