Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F91534508
hbm
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Tue, Nov 12, 00:06
Size
1 KB
Mime Type
text/x-python
Expires
Thu, Nov 14, 00:06 (2 d)
Engine
blob
Format
Raw Data
Handle
22277869
Attached To
rLIBMULTISCALE LibMultiScale
hbm
View Options
#!/usr/bin/env python3
import click
import harbomaster
@click.group()
@click.option('-a', '--api-token', default=None)
@click.option('-h', '--host', default=None)
@click.option('-b', '--build-target-phid')
@click.pass_context
def hbm(ctx, api_token, host, build_target_phid):
ctx.obj['API_TOKEN'] = api_token
ctx.obj['HOST'] = host
ctx.obj['BUILD_TARGET_PHID'] = build_target_phid
@hbm.command()
@click.option('-f', '--filename')
@click.pass_context
def send_ctest_results(ctx, filename):
_hbm = harbomaster.Harbormaster(ctx=ctx.obj)
with harbomaster.CTestResults(filename) as tests:
_hbm.send_unit_tests(tests)
@hbm.command()
@click.option('-k', '--key')
@click.option('-l', '--label')
@click.pass_context
def send_uri(ctx, key, label):
_hbm = harbomaster.Harbormaster(ctx=ctx.obj)
_hbm.send_uri(key, label)
@hbm.command()
@click.pass_context
def passed(ctx):
_hbm = harbomaster.Harbormaster(ctx=ctx.obj)
_hbm.passed()
@hbm.command()
@click.pass_context
def failed(ctx):
_hbm = harbomaster.Harbormaster(ctx=ctx.obj)
_hbm.failed()
if __name__ == '__main__':
hbm(obj={})
Event Timeline
Log In to Comment