mirror of https://github.com/ARMmbed/mbed-os.git
39 lines
1.1 KiB
Python
39 lines
1.1 KiB
Python
"""
|
|
mbed SDK
|
|
Copyright (c) 2011-2015 ARM Limited
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
|
|
Author: Przemyslaw Wirkus <Przemyslaw.wirkus@arm.com>
|
|
"""
|
|
|
|
from mbed_os_tools.test.mbed_report_api import (
|
|
export_to_file,
|
|
exporter_json,
|
|
exporter_text,
|
|
exporter_testcase_text,
|
|
exporter_testcase_junit,
|
|
html_template,
|
|
TEST_RESULT_COLOURS,
|
|
TEST_RESULT_DEFAULT_COLOUR,
|
|
get_result_colour_class_css,
|
|
get_result_colour_class,
|
|
get_dropdown_html,
|
|
get_result_overlay_testcase_dropdown,
|
|
get_result_overlay_testcases_dropdown_menu,
|
|
get_result_overlay_dropdowns,
|
|
get_result_overlay,
|
|
exporter_html,
|
|
exporter_memory_metrics_csv,
|
|
)
|