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.
16 lines
666 B
16 lines
666 B
|
7 days ago
|
# -*- coding: utf-8 -*-
|
||
|
|
"""票 06:归档 e2e 回归快照(result json + report md → -t06-regression 命名)。"""
|
||
|
|
import io, shutil, sys
|
||
|
|
sys.stdout = io.TextIOWrapper(sys.stdout.buffer, encoding='utf-8')
|
||
|
|
|
||
|
|
E = r'e:\code\crm-backend-matt\.scratch\opportunity-e2e'
|
||
|
|
pairs = [
|
||
|
|
(E + r'\e2e-core-result.json', E + r'\e2e-core-result-t06-regression.json'),
|
||
|
|
(E + r'\e2e-rules-result.json', E + r'\e2e-rules-result-t06-regression.json'),
|
||
|
|
(E + r'\report-core.md', E + r'\report-core-t06-regression.md'),
|
||
|
|
(E + r'\report-rules.md', E + r'\report-rules-t06-regression.md'),
|
||
|
|
]
|
||
|
|
for src, dst in pairs:
|
||
|
|
shutil.copyfile(src, dst)
|
||
|
|
print('archived', dst)
|