Split up unit tests on Shippable. (#21931)

* Add more verbose output to coverage combine.
* Run unit tests on CI separately by version.
This commit is contained in:
Matt Clay 2017-02-24 16:58:56 -08:00 committed by GitHub
commit 2804d2e848
4 changed files with 26 additions and 10 deletions

View file

@ -41,7 +41,12 @@ def command_coverage_combine(args):
ansible_path = os.path.abspath('lib/ansible/') + '/'
root_path = os.getcwd() + '/'
counter = 0
for coverage_file in coverage_files:
counter += 1
display.info('[%4d/%4d] %s' % (counter, len(coverage_files), coverage_file), verbosity=2)
original = coverage.CoverageData()
if os.path.getsize(coverage_file) == 0: