71 lines
1.6 KiB
Python
Executable File
71 lines
1.6 KiB
Python
Executable File
#!/usr/bin/env python
|
|
from __future__ import print_function
|
|
|
|
import os
|
|
import sys
|
|
import tempfile
|
|
|
|
from subprocess import check_call
|
|
|
|
|
|
PACKAGE_NAME = os.environ.get(
|
|
'CLI_PACKAGE_NAME', 'github.com/codegangsta/cli'
|
|
)
|
|
|
|
|
|
def main():
|
|
_run('go vet ./...'.split())
|
|
|
|
coverprofiles = []
|
|
for subpackage in ['', 'altsrc']:
|
|
coverprofile = 'cli.coverprofile'
|
|
if subpackage != '':
|
|
coverprofile = '{}.coverprofile'.format(subpackage)
|
|
|
|
coverprofiles.append(coverprofile)
|
|
|
|
_run('go test -v'.split() + [
|
|
'-coverprofile={}'.format(coverprofile),
|
|
'{}/{}'.format(PACKAGE_NAME, subpackage)
|
|
])
|
|
|
|
combined = _combine_coverprofiles(coverprofiles)
|
|
_run('go tool cover -func={}'.format(combined.name).split())
|
|
combined.close()
|
|
|
|
_run(['gfmxr', '-c', str(_gfmxr_count()), '-s', 'README.md'])
|
|
return 0
|
|
|
|
|
|
def _run(command):
|
|
print('runtests: {}'.format(' '.join(command)), file=sys.stderr)
|
|
check_call(command)
|
|
|
|
|
|
def _gfmxr_count():
|
|
with open('README.md') as infile:
|
|
lines = infile.read().splitlines()
|
|
return len(filter(_is_go_runnable, lines))
|
|
|
|
|
|
def _is_go_runnable(line):
|
|
return line.startswith('package main')
|
|
|
|
|
|
def _combine_coverprofiles(coverprofiles):
|
|
combined = tempfile.NamedTemporaryFile(suffix='.coverprofile')
|
|
combined.write('mode: set\n')
|
|
|
|
for coverprofile in coverprofiles:
|
|
with open(coverprofile, 'r') as infile:
|
|
for line in infile.readlines():
|
|
if not line.startswith('mode: '):
|
|
combined.write(line)
|
|
|
|
combined.flush()
|
|
return combined
|
|
|
|
|
|
if __name__ == '__main__':
|
|
sys.exit(main())
|