Merge lp:~stylesen/lava-tool/add-dashboard-cmds into lp:~linaro-validation/lava-tool/trunk

Proposed by Senthil Kumaran S
Status: Merged
Merged at revision: 184
Proposed branch: lp:~stylesen/lava-tool/add-dashboard-cmds
Merge into: lp:~linaro-validation/lava-tool/trunk
Diff against target: 45 lines (+15/-2)
2 files modified
lava_dashboard_tool/commands.py (+1/-1)
setup.py (+14/-1)
To merge this branch: bzr merge lp:~stylesen/lava-tool/add-dashboard-cmds
Reviewer Review Type Date Requested Status
Antonio Terceiro Approve
Review via email: mp+162060@code.launchpad.net

Description of the change

Add lava-dashboard-tool commands to lava-tool.

To post a comment you must log in.
185. By Senthil Kumaran S

Fix bug #1175591 - lava-dashboard-tool bundles raises python exception.

Revision history for this message
Antonio Terceiro (terceiro) wrote :

LGTM

 review approve

review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
=== modified file 'lava_dashboard_tool/commands.py'
--- lava_dashboard_tool/commands.py 2013-04-22 17:33:58 +0000
+++ lava_dashboard_tool/commands.py 2013-05-02 14:46:30 +0000
@@ -610,7 +610,7 @@
610 row_formatter={610 row_formatter={
611 'is_deserialized': lambda x: "yes" if x else "no",611 'is_deserialized': lambda x: "yes" if x else "no",
612 'uploaded_by': lambda x: x or "(anonymous)",612 'uploaded_by': lambda x: x or "(anonymous)",
613 'uploaded_on': lambda x: x.strftime("%Y-%m-%d %H:%M:%S")},613 'uploaded_on': lambda x: x},
614 order=('content_sha1', 'content_filename', 'uploaded_by',614 order=('content_sha1', 'content_filename', 'uploaded_by',
615 'uploaded_on', 'is_deserialized'),615 'uploaded_on', 'is_deserialized'),
616 empty="There are no bundles in this stream",616 empty="There are no bundles in this stream",
617617
=== modified file 'setup.py'
--- setup.py 2013-04-30 18:43:30 +0000
+++ setup.py 2013-05-02 14:46:30 +0000
@@ -40,7 +40,7 @@
40 [lava.commands]40 [lava.commands]
41 help = lava.tool.commands.help:help41 help = lava.tool.commands.help:help
42 scheduler = lava_scheduler_tool.commands:scheduler42 scheduler = lava_scheduler_tool.commands:scheduler
43 dashboard=lava_dashboard_tool.commands:dashboard43 dashboard = lava_dashboard_tool.commands:dashboard
44 [lava_tool.commands]44 [lava_tool.commands]
45 help = lava.tool.commands.help:help45 help = lava.tool.commands.help:help
46 auth-add = lava_tool.commands.auth:auth_add46 auth-add = lava_tool.commands.auth:auth_add
@@ -48,6 +48,19 @@
48 resubmit-job = lava_scheduler_tool.commands:resubmit_job48 resubmit-job = lava_scheduler_tool.commands:resubmit_job
49 cancel-job = lava_scheduler_tool.commands:cancel_job49 cancel-job = lava_scheduler_tool.commands:cancel_job
50 job-output = lava_scheduler_tool.commands:job_output50 job-output = lava_scheduler_tool.commands:job_output
51 backup=lava_dashboard_tool.commands:backup
52 bundles=lava_dashboard_tool.commands:bundles
53 data_views=lava_dashboard_tool.commands:data_views
54 deserialize=lava_dashboard_tool.commands:deserialize
55 get=lava_dashboard_tool.commands:get
56 make_stream=lava_dashboard_tool.commands:make_stream
57 pull=lava_dashboard_tool.commands:pull
58 put=lava_dashboard_tool.commands:put
59 query_data_view=lava_dashboard_tool.commands:query_data_view
60 restore=lava_dashboard_tool.commands:restore
61 server_version=lava_dashboard_tool.commands:server_version
62 streams=lava_dashboard_tool.commands:streams
63 version=lava_dashboard_tool.commands:version
51 [lava.scheduler.commands]64 [lava.scheduler.commands]
52 submit-job = lava_scheduler_tool.commands:submit_job65 submit-job = lava_scheduler_tool.commands:submit_job
53 resubmit-job = lava_scheduler_tool.commands:resubmit_job66 resubmit-job = lava_scheduler_tool.commands:resubmit_job

Subscribers

People subscribed via source and target branches