Co-authored-by: TzuWei <tzuwei.huang@ironyun.com> Reviewed-on: #1 Reviewed-by: joy <joy224961632@gmail.com>
5 lines
149 B
Python
5 lines
149 B
Python
from pathlib import Path
|
|
|
|
base_dir = Path(__file__).resolve().parent
|
|
report_folder = base_dir / "Report"
|
|
junit_report_dir = base_dir / "test-reports" |