OLD | NEW |
(Empty) | |
| 1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. |
| 4 |
| 5 import os |
| 6 import sys |
| 7 import unittest |
| 8 |
| 9 ROOT_PATH = os.path.abspath(os.path.join( |
| 10 os.path.dirname(os.path.dirname(__file__)))) |
| 11 |
| 12 |
| 13 def covered_main(includes): |
| 14 """Equivalent of unittest.main(), except that it gathers coverage data, and |
| 15 asserts if the test is not at 100% coverage. |
| 16 |
| 17 Args: |
| 18 includes (list(str) or str) - List of paths to include in coverage report. |
| 19 May also be a single path instead of a list. |
| 20 """ |
| 21 try: |
| 22 import coverage |
| 23 except ImportError: |
| 24 sys.path.insert(0, os.path.join(ROOT_PATH, 'third_party')) |
| 25 import coverage |
| 26 COVERAGE = coverage.coverage(include=includes) |
| 27 COVERAGE.start() |
| 28 |
| 29 retcode = 0 |
| 30 try: |
| 31 unittest.main() |
| 32 except SystemExit as e: |
| 33 retcode = e.code or retcode |
| 34 |
| 35 COVERAGE.stop() |
| 36 if COVERAGE.report() != 100.0: |
| 37 print 'FATAL: not at 100% coverage.' |
| 38 retcode = 2 |
| 39 |
| 40 return retcode |
OLD | NEW |