@@ -19,15 +19,21 @@ jobs:
19
19
- uses : actions/checkout@v3
20
20
21
21
- run : docker context create builders
22
+
22
23
- uses : docker/setup-buildx-action@v3
23
24
with :
24
25
endpoint : builders
25
26
27
+ - uses : actions/setup-python@v4
28
+ with :
29
+ python-version : 3.8
30
+
31
+ - uses : snok/install-poetry@v1
32
+ with :
33
+ version : 1.6.1
34
+
26
35
- name : Run aio integration tests
27
- run : |
28
- # TODO: use poetry for pkg mgmt
29
- pip3 install boto3 boto3-stubs[essential] docker ec2instanceconnectcli pytest pytest-testinfra[paramiko,docker] requests
30
- pytest -vv testinfra/test_all_in_one.py
36
+ run : cd testinfra && poetry run pytest -vv test_all_in_one.py
31
37
32
38
test-ami :
33
39
strategy :
49
55
- name : Checkout Repo
50
56
uses : actions/checkout@v4
51
57
58
+ - uses : actions/setup-python@v4
59
+ with :
60
+ python-version : 3.8
61
+
62
+ - uses : snok/install-poetry@v1
63
+ with :
64
+ version : 1.6.1
65
+
52
66
- id : args
53
67
uses : mikefarah/yq@master
54
68
with :
@@ -122,11 +136,8 @@ jobs:
122
136
GIT_SHA=${{github.sha}}
123
137
packer build -var "git-head-version=${GIT_SHA}" -var "packer-execution-id=${GITHUB_RUN_ID}" -var-file="development-arm.vars.pkr.hcl" -var-file="common.vars.pkr.hcl" -var "ansible_arguments=" -var "postgres-version=ci-ami-test" -var "region=ap-southeast-1" -var 'ami_regions=["ap-southeast-1"]' -var "force-deregister=true" amazon-arm64.pkr.hcl
124
138
125
- - name : Run tests
126
- run : |
127
- # TODO: use poetry for pkg mgmt
128
- pip3 install boto3 boto3-stubs[essential] docker ec2instanceconnectcli pytest pytest-testinfra[paramiko,docker] requests
129
- pytest -vv testinfra/test_ami.py
139
+ - name : Run AMI integration tests
140
+ run : cd testinfra && poetry run pytest -vv test_ami.py
130
141
131
142
- name : Cleanup resources on build cancellation
132
143
if : ${{ cancelled() }}
0 commit comments