Strip trailing slash for cleanliness

This commit is contained in:
Dan Buch 2016-05-09 09:00:22 -04:00
parent d94fdb3e84
commit 5fa09b8e23
No known key found for this signature in database
GPG Key ID: FAEF12936DD3E3EC

View File

@ -42,7 +42,7 @@ def _test():
_run('go test -v'.split() + [
'-coverprofile={}'.format(coverprofile),
'{}/{}'.format(PACKAGE_NAME, subpackage)
('{}/{}'.format(PACKAGE_NAME, subpackage)).rstrip('/')
])
combined = _combine_coverprofiles(coverprofiles)