Metadata Configuration ​
Metadata is a way to add additional information to the test run. It is a key-value pair that can be used to add additional information to the test run.
Configuration ​
Basic Syntax ​
Metadata is a key-value pair that can be used to add additional information to the test run.
json
{
"metadata": {
"environment": "production",
"team": "payments"
}
}1
2
3
4
5
6
2
3
4
5
6
Parameters ​
key(string) - Key of the datavalue(string) - Value of the data
Examples ​
json
{
"targets": [
{
"name": "slack",
"inputs": {
"url": "<slack-webhook-url>"
}
}
],
"results": [
{
"type": "testng",
"files": ["path/to/testng-results.xml"]
}
],
"metadata": {
"environment": "production",
"team": "payments"
}
}1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Related Documentation ​
- Configuration Guide - General configuration help
