How do I archive WB project without results using scripting?
Ayush Kumar
Member, Moderator, Employee Posts: 444
✭✭✭✭
I want to archive my WB project using scripting but using the Archive()
method archives the project with result files. How can I archive it without results (.rst file etc.)?
Tagged:
2
Answers
-
The boolean argument
IncludeSkippedFiles
does the trick. If set toFalse
the archived project doesn't include the result files (.rst etc.). Example usage:Archive(FilePath="\Path\to\my\test.wbpz", IncludeSkippedFiles=False)
0