Break runtests back into steps for more granular CI feedback
This commit is contained in:
parent
2df2fa514d
commit
d94fdb3e84
@ -19,4 +19,6 @@ before_script:
|
|||||||
- go get github.com/meatballhat/gfmxr/...
|
- go get github.com/meatballhat/gfmxr/...
|
||||||
|
|
||||||
script:
|
script:
|
||||||
- ./runtests
|
- ./runtests vet
|
||||||
|
- ./runtests test
|
||||||
|
- ./runtests gfmxr
|
||||||
|
30
runtests
30
runtests
@ -13,10 +13,25 @@ PACKAGE_NAME = os.environ.get(
|
|||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
def main():
|
def main(sysargs=sys.argv[:]):
|
||||||
_run('go vet ./...'.split())
|
target = 'test'
|
||||||
|
if len(sysargs) > 1:
|
||||||
|
target = sysargs[1]
|
||||||
|
|
||||||
|
{
|
||||||
|
'vet': _vet,
|
||||||
|
'test': _test,
|
||||||
|
'gfmxr': _gfmxr
|
||||||
|
}[target]()
|
||||||
|
|
||||||
|
return 0
|
||||||
|
|
||||||
|
|
||||||
|
def _test():
|
||||||
|
if check_output('go version'.split()).split()[2] < 'go1.2':
|
||||||
|
_run('go test -v ./...'.split())
|
||||||
|
return
|
||||||
|
|
||||||
if check_output('go version'.split()).split()[2] >= 'go1.2':
|
|
||||||
coverprofiles = []
|
coverprofiles = []
|
||||||
for subpackage in ['', 'altsrc']:
|
for subpackage in ['', 'altsrc']:
|
||||||
coverprofile = 'cli.coverprofile'
|
coverprofile = 'cli.coverprofile'
|
||||||
@ -33,11 +48,14 @@ def main():
|
|||||||
combined = _combine_coverprofiles(coverprofiles)
|
combined = _combine_coverprofiles(coverprofiles)
|
||||||
_run('go tool cover -func={}'.format(combined.name).split())
|
_run('go tool cover -func={}'.format(combined.name).split())
|
||||||
combined.close()
|
combined.close()
|
||||||
else:
|
|
||||||
_run('go test -v ./...'.split())
|
|
||||||
|
|
||||||
|
|
||||||
|
def _gfmxr():
|
||||||
_run(['gfmxr', '-c', str(_gfmxr_count()), '-s', 'README.md'])
|
_run(['gfmxr', '-c', str(_gfmxr_count()), '-s', 'README.md'])
|
||||||
return 0
|
|
||||||
|
|
||||||
|
def _vet():
|
||||||
|
_run('go vet ./...'.split())
|
||||||
|
|
||||||
|
|
||||||
def _run(command):
|
def _run(command):
|
||||||
|
Loading…
Reference in New Issue
Block a user