-
Notifications
You must be signed in to change notification settings - Fork 2
/
azure-pipelines.yml
83 lines (74 loc) · 2.13 KB
/
azure-pipelines.yml
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
trigger:
batch: true
branches:
include:
- main
pr:
branches:
include:
- main
schedules:
- cron: '0 0 * * 0'
displayName: Weekly build
branches:
include:
- main
always: true
resources:
repositories:
- repository: OpsGuildAutomationRepo
type: git
name: DevOps/opsguild.automation
ref: refs/heads/main
- repository: templates
type: github
name: AVEVA/AVEVA-Samples
endpoint: AVEVA
variables:
- name: analysisProject
value: Lib_Python
parameters:
- name: pool
default: DevOps Managed Containers Build
- name: containerDemands
type: object
default: ['Agent.OS -equals Linux']
jobs:
- template: '/miscellaneous/build_templates/code-analysis.yml@templates'
parameters:
buildSteps:
- script: |
echo Install tools
call pip install wheel
call pip install twine
echo Build library
call python setup.py sdist bdist_wheel
echo Complete
displayName: 'Build'
- job: Tests
condition: ne(variables['Build.Reason'], 'Schedule')
pool:
name: ${{ parameters.pool }}
demands: ${{ parameters.containerDemands }}
steps:
- template: '/miscellaneous/build_templates/appsettings.yml@templates'
parameters:
secrets: 'TenantId, NamespaceId, ClientId, ClientSecret, Resource'
- script: |
echo Install test tools
pip install pytest
echo Install requirements
pip install -r requirements.txt
echo Run tests
cd ./adh_sample_library_preview/Tests
python -m pytest --junitxml=junit/test-results-baseclient.xml test_baseclient.py --e2e True
python -m pytest --junitxml=junit/test-results-streams.xml test_streams.py --e2e True
echo Complete
displayName: 'Run tests'
- task: PublishTestResults@2
inputs:
testResultsFiles: '**/test-*.xml'
failTaskOnFailedTests: true
testRunTitle: '$(Agent.JobName) on $(Agent.OS)'
displayName: 'Publish test results'
condition: always()