Skip to content

Commit 78a8d26

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

File tree

5 files changed

+1161
-19
lines changed

5 files changed

+1161
-19
lines changed

.github/workflows/testinfra.yml

+12-9
Original file line numberDiff line numberDiff line change
@@ -19,15 +19,17 @@ 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: snok/install-poetry@v1
28+
with:
29+
version: 1.6.1
30+
2631
- 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
32+
run: cd testinfra && poetry run pytest -vv test_all_in_one.py
3133

3234
test-ami:
3335
strategy:
@@ -49,6 +51,10 @@ jobs:
4951
- name: Checkout Repo
5052
uses: actions/checkout@v4
5153

54+
- uses: snok/install-poetry@v1
55+
with:
56+
version: 1.6.1
57+
5258
- id: args
5359
uses: mikefarah/yq@master
5460
with:
@@ -122,11 +128,8 @@ jobs:
122128
GIT_SHA=${{github.sha}}
123129
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
124130
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
131+
- name: Run AMI integration tests
132+
run: cd testinfra && poetry run pytest -vv test_ami.py
130133

131134
- name: Cleanup resources on build cancellation
132135
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)