Skip to content

Commit ab0fcf7

Browse files
Merge pull request #356 from NHSDigital/develop
APIM-R 1.10
2 parents 5cf43fb + bbf5754 commit ab0fcf7

File tree

80 files changed

+4839
-4159
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

80 files changed

+4839
-4159
lines changed

.github/dependabot.yml

Lines changed: 62 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: "npm"
4+
directory: "/"
5+
schedule:
6+
interval: "daily"
7+
allow:
8+
- dependency-type: "all"
9+
target-branch: "develop"
10+
commit-message:
11+
prefix: "npm"
12+
include: "scope"
13+
14+
- package-ecosystem: "npm"
15+
directory: "/sandbox"
16+
schedule:
17+
interval: "daily"
18+
allow:
19+
- dependency-type: "all"
20+
target-branch: "develop"
21+
commit-message:
22+
prefix: "sandbox-npm"
23+
include: "scope"
24+
25+
- package-ecosystem: "pip"
26+
directory: "/"
27+
schedule:
28+
interval: "daily"
29+
allow:
30+
- dependency-type: "all"
31+
target-branch: "develop"
32+
commit-message:
33+
prefix: "pip"
34+
include: "scope"
35+
36+
- package-ecosystem: "docker"
37+
directory: "/sandbox"
38+
schedule:
39+
interval: "daily"
40+
allow:
41+
- dependency-type: "all"
42+
target-branch: "develop"
43+
commit-message:
44+
prefix: "sandbox-docker"
45+
include: "scope"
46+
47+
- package-ecosystem: "github-actions"
48+
directory: "/"
49+
schedule:
50+
interval: "daily"
51+
allow:
52+
- dependency-type: "all"
53+
target-branch: "develop"
54+
commit-message:
55+
prefix: "github-actions"
56+
include: "scope"
57+
58+
59+
60+
61+
62+

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ __pycache__/
2020

2121
tests/test-report.xml
2222
tests/functional-test-report.xml
23+
tests/sandbox-test-report.xml
2324
.orig
2425

2526
.python-version

azure/azure-pr-pipeline.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,4 +86,5 @@ extends:
8686
post_deploy:
8787
- template: templates/run-tests.yml
8888
parameters:
89+
smoke_tests: true
8990
sandbox_tests: true

azure/azure-release-pipeline.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,15 @@ extends:
126126
proxy_path: sandbox
127127
depends_on:
128128
- manual_approval_sa
129+
post_deploy:
130+
- template: templates/run-tests.yml
131+
parameters:
132+
smoke_tests: true
129133
- environment: sandbox
130134
proxy_path: sandbox
131135
depends_on:
132136
- manual_approval_int
137+
post_deploy:
138+
- template: templates/run-tests.yml
139+
parameters:
140+
smoke_tests: true

azure/templates/ers-sandbox-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
steps:
2-
- bash: |
2+
- bash: |
33
poetry run pytest -v tests/sandbox --junitxml=tests/sandbox-test-report.xml
44
displayName: Run Sandbox tests
55
workingDirectory: "$(Pipeline.Workspace)/s/$(SERVICE_NAME)/$(SERVICE_ARTIFACT_NAME)"

ecs-proxies-deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ docker_service:
33
expose: true
44
health_check:
55
matcher: "200"
6-
path: "/_health"
6+
path: "/_ping"

0 commit comments

Comments
 (0)