forked from kenmuse/AzDOTestResults
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathabout_AzDOTestResults.help.txt
46 lines (37 loc) · 2.34 KB
/
about_AzDOTestResults.help.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
TOPIC
about_AzDOTestResults
SHORT DESCRIPTION
Provides functions for retrieving Test Results attached to a build in Azure DevOps
LONG DESCRIPTION
This module downloads the test results (TRX files, code coverage, etc.) associated
with a build in Azure DevOps. Additionally, the dependencies of the TRX file can
will be restored using the directory structure specified in the TRX, optionally being
restored into a directory structure which is user-configurable. By default, the directory
convention is organized to support third-party testing tools and uses the format:
$trxFolder/In/$folder
The specific directoy convention for TRX dependencies utilizes two special variables:
Variable Description
------------------ -------------------
$folder The directory structure specified in the TRX file
$trxFolder A directory name based on the name of the TRX file
with the file extension removed and spaces replaced
with underscores.
If you have any questions, suggestions, or bug reports, please contact Ken
The following cmdlets are included.
Cmdlet Description
------------------ ----------------------------------------------
Copy-TestResult Retrieves test results from a specific Azure DevOps build
pipeline and places them in the specified output folder.
Copy-TestResultToCommon Retrieves test results from the currently running Azure DevOps
build pipeline and places them in the directory specified.
by the COMMON_TESTRESULTSDIRECTORY environment variable
Copy-TestResultToTemp Retrieves test results from the currently running Azure DevOps
build pipeline and places them in the TestResults directory
inside the director specified by the AGENT_TEMPDIRECTORY
environment variable.
SEE ALSO
Online help and updates:
http://www.wintellect.com/devcenter/author/kmuse
GitHub repository:
https://github.com/KenMuse/AzDOTestResults