Launches
In Allure TestOps Launches have the following attributed which can be used with AQL for filtering.
Attribute | Description | Examples |
---|---|---|
id |
Identifier of a launch | id = 17 id != 20 id is 17 id in [1, 2, 10] not id in [1, 2, 10] |
name |
Name | name is "my test result name" name = "my test result name" name ~= "result" name in ["my test result name", "second test"] |
tag |
Tags | tag is "smoke" tag in ["fast", "smoke"] |
issue |
Related issues | issue is "AS-2" issue in ["AS-1", "AS-3"] |
job |
Job | job is "jenkins_master" job in ["github_experimental", "gitlab_main"] |
execution |
Execution | execution is "Manual results upload" execution in ["On Browser", "On device"] |
createdDate |
Time of creation | createdDate < 1569430502709 |
createdBy |
The user who has created the test case | createdBy is "admin" createdBy = "admin" createdBy ~= "adm" createdBy in ["admin", "owner"] |
lastModifiedDate |
Last modified date. | lastModifiedDate < 1569430502709 |
lastModifiedBy |
The user who’s last modified the TestCase. | lastModifiedBy is "admin" lastModifiedBy = "admin" lastModifiedBy ~= "adm" lastModifiedBy in ["admin", "owner"] |
evv |
Filter by Environment Variables Values | evv="https://test.host.xyz" |
closed |
Check if a launch is closed or not | closed = false |
Back to AQL format description
© Qameta Software Inc. All rights reserved.