You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
377 B
9 lines
377 B
|
7 days ago
|
# -*- coding: utf-8 -*-
|
||
|
|
"""票 05:查看 SchemeCard 测试 surefire 失败详情。"""
|
||
|
|
import io, sys
|
||
|
|
sys.stdout = io.TextIOWrapper(sys.stdout.buffer, encoding='utf-8')
|
||
|
|
|
||
|
|
d = r'e:\code\crm-backend-matt\crm-opportunity\target\surefire-reports'
|
||
|
|
txt = open(d + r'\com.crm.opportunity.schemecard.impl.OpportunitySchemeCardServiceImplTest.txt', encoding='utf-8').read()
|
||
|
|
print(txt)
|