-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathazure-pipelines-ui-tests.yml
More file actions
53 lines (46 loc) · 1.35 KB
/
azure-pipelines-ui-tests.yml
File metadata and controls
53 lines (46 loc) · 1.35 KB
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
47
48
49
50
51
52
53
variables:
SPN_NAME: s101d-datahub-spn-ees-dfe-gov-uk
schedules:
- cron: 0 6 * * 1,2,3,4,5
branches:
include:
- dev
always: true
pr: none
name: $(date:yyyyMMdd)$(rev:.r)
resources:
repositories:
- repository: self
type: git
ref: refs/heads/dev
jobs:
- template: azure-pipelines-run-ui-test-suite.yml
parameters:
jobName: Public
displayName: Public suite - Robot UI tests
testFolder: tests/general_public
artifactName: test-results-public
- template: azure-pipelines-run-ui-test-suite.yml
parameters:
jobName: PublishAndAmend
displayName: Publish release and amend suites - Robot UI tests
testFolder: tests/admin_and_public_2
artifactName: test-results-admin-and-public-2
- template: azure-pipelines-run-ui-test-suite.yml
parameters:
jobName: Admin
displayName: Admin suites - Robot UI tests
testFolder: tests/admin
artifactName: test-results-admin
- template: azure-pipelines-run-ui-test-suite.yml
parameters:
jobName: AdminAndPublic
displayName: Admin & public suites - Robot UI tests
testFolder: tests/admin_and_public
artifactName: test-results-admin-public
- template: azure-pipelines-run-ui-test-suite.yml
parameters:
jobName: PublicAPI
displayName: Public API suite - Robot UI tests
testFolder: tests/public_api
artifactName: test-results-admin-public-api