Skip to content

Commit 4231e6f

Browse files
APM-6129-AnsibleIssueHighALerts
1 parent acfbdfc commit 4231e6f

File tree

7 files changed

+87
-60
lines changed

7 files changed

+87
-60
lines changed

ansible/collections/ansible_collections/nhsd/apigee/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ update-schema:
44
@PYTHONPATH=../../../ poetry run python scripts/update_schema.py
55

66
unit-test:
7-
@poetry run ansible-test units --python=3.10
7+
@poetry run ansible-test units --python=3.9
88

99
integration-test:
10-
@poetry run ansible-test integration --python=3.10
10+
@poetry run ansible-test integration --python=3.9
1111

1212
test: unit-test integration-test
1313

azure/build-prereqs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ parameters:
66
steps:
77
- task: UsePythonVersion@0
88
inputs:
9-
versionSpec: '3.10'
9+
versionSpec: '3.9'
1010

1111
- bash: |
1212
tfenv use 0.14.6

azure/common/apigee-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ parameters:
2929
default: []
3030
- name: python_version
3131
type: string
32-
default: "3.10"
32+
default: "3.9"
3333
- name: agent_pool
3434
type: string
3535
default: "AWS-ECS"

azure/common/apigee-deployment.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ parameters:
150150
default: 'DEPRECATED'
151151
- name: python_version
152152
type: string
153-
default: "3.10"
153+
default: "3.9"
154154
- name: agent_pool
155155
type: string
156156
default: "AWS-ECS"

azure/utils-pr-pipeline.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@ jobs:
3030
clean: all
3131
steps:
3232
- task: UsePythonVersion@0
33-
displayName: 'Use Python 3.10'
33+
displayName: 'Use Python 3.9'
3434
inputs:
35-
versionSpec: 3.10
35+
versionSpec: 3.9
3636

3737
- bash: |
3838
instance_id="$(curl -s http://169.254.169.254/latest/meta-data/instance-id)"
@@ -102,13 +102,13 @@ jobs:
102102
make install
103103
displayName: Install utils pre-requisites
104104
105-
# - bash: |
106-
# ANSIBLE_FORCE_COLOR=yes poetry run ansible-test units --python=3.10
107-
# workingDirectory: ansible/collections/ansible_collections/nhsd/apigee
108-
# displayName: Unit test ansible
105+
- bash: |
106+
ANSIBLE_FORCE_COLOR=yes poetry run ansible-test units --python=3.9
107+
workingDirectory: ansible/collections/ansible_collections/nhsd/apigee
108+
displayName: Unit test ansible
109109
110110
- bash: |
111-
ANSIBLE_FORCE_COLOR=yes poetry run ansible-test integration --python=3.10
111+
ANSIBLE_FORCE_COLOR=yes poetry run ansible-test integration --python=3.9
112112
workingDirectory: ansible/collections/ansible_collections/nhsd/apigee
113113
displayName: Integration test ansible
114114

poetry.lock

Lines changed: 74 additions & 47 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ license = "MIT"
77
package-mode = false
88

99
[tool.poetry.dependencies]
10-
python = "^3.10"
10+
python = "^3.9"
1111
docopt = "^0.6.2"
1212
jinja2 = "^3.1.2"
1313
requests = "^2.23.0"

0 commit comments

Comments
 (0)