同步操作将从 PaddlePaddle/Paddle 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
#!/usr/bin/env python# -*- coding: utf-8 -*-# Copyright (c) 2020 PaddlePaddle Authors. All Rights Reserved.## 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."""usage: python_coverage.py > python-coverage.info"""from os import pathfrom xml.etree import ElementTreetree = ElementTree.parse('python-coverage.xml')root = tree.getroot()sources = root.findall('sources/source')source = sources[-1].textfor clazz in root.findall('packages/package/classes/class'):clazz_filename = clazz.attrib.get('filename')clazz_filename = path.join(source, clazz_filename)if clazz_filename.startswith('/paddle/build/python/'):clazz_filename = '/paddle/python/' + clazz_filename[len('/paddle/build/python/'):]if not path.exists(clazz_filename):continueprint('TN:')print('SF:{}'.format(clazz_filename))branch_index = 0for line in clazz.findall('lines/line'):line_hits = line.attrib.get('hits')line_number = line.attrib.get('number')line_branch = line.attrib.get('branch')line_condition_coverage = line.attrib.get('condition-coverage')line_missing_branches = line.attrib.get('missing-branches')if line_branch == 'true':line_condition_coverage = line_condition_coverage.split()line_condition_coverage = line_condition_coverage[1].strip('()')line_condition_coverage = line_condition_coverage.split('/')taken = line_condition_coverage[0]taken = int(taken)for _ in range(taken):print('BRDA:{},{},{},{}'.format(line_number, 0, branch_index,line_hits))branch_index += 1if line_missing_branches:for missing_branch in line_missing_branches.split(','):print('BRDA:{},{},{},{}'.format(line_number, 0,branch_index, 0))branch_index += 1print('DA:{},{}'.format(line_number, line_hits))print('end_of_record')
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。