Skip to content

Commit e802ea1

Browse files
committed
chore(testinfra): use poetry
1 parent c8a676f commit e802ea1

File tree

5 files changed

+1169
-19
lines changed

5 files changed

+1169
-19
lines changed

.github/workflows/testinfra.yml

+20-9
Original file line numberDiff line numberDiff line change
@@ -19,15 +19,21 @@ jobs:
1919
- uses: actions/checkout@v3
2020

2121
- run: docker context create builders
22+
2223
- uses: docker/setup-buildx-action@v3
2324
with:
2425
endpoint: builders
2526

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+
2635
- 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
3137

3238
test-ami:
3339
strategy:
@@ -49,6 +55,14 @@ jobs:
4955
- name: Checkout Repo
5056
uses: actions/checkout@v4
5157

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+
5266
- id: args
5367
uses: mikefarah/yq@master
5468
with:
@@ -122,11 +136,8 @@ jobs:
122136
GIT_SHA=${{github.sha}}
123137
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
124138
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
130141

131142
- name: Cleanup resources on build cancellation
132143
if: ${{ cancelled() }}

testinfra/README.md

+6-8
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,10 @@
33
## Prerequisites
44

55
- Docker
6-
- Packer
7-
- yq
8-
- Python deps:
9-
10-
```sh
11-
pip3 install boto3 boto3-stubs[essential] docker ec2instanceconnectcli pytest pytest-testinfra[paramiko,docker] requests
12-
```
6+
- [Packer](https://www.packer.io)
7+
- [yq](https://github.com/mikefarah/yq)
8+
- Python (3.12+)
9+
- [Poetry](https://python-poetry.org)
1310

1411
## Running locally
1512

@@ -61,5 +58,6 @@ AWS_PROFILE=supabase-dev packer build \
6158
amazon-arm64.pkr.hcl
6259

6360
# run tests
64-
AWS_PROFILE=supabase-dev pytest -vv -s testinfra/test_*.py
61+
cd testinfra
62+
AWS_PROFILE=supabase-dev poetry run pytest -vv -s test_*.py
6563
```

0 commit comments

Comments
 (0)