Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F93212321
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
Wed, Nov 27, 01:41
Size
1 KB
Mime Type
text/x-python
Expires
Fri, Nov 29, 01:41 (1 d, 22 h)
Engine
blob
Format
Raw Data
Handle
22582366
Attached To
rAKA akantu
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