Skip to content

Commit

Permalink
feat: remove manual creation of bucket from test workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
mjugl committed Dec 16, 2024
1 parent a235659 commit 4a12e1f
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/integration-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,6 @@ jobs:
run: poetry install
- name: Copy environment variables
run: cp .env.example .env.test
- name: Create local bucket
run: poetry run flame-result migrate --no-verify "$MINIO_ROOT_USER" "$MINIO_ROOT_PASSWORD" "$MINIO_LOCAL_BUCKET_NAME"
- name: Run tests
run: poetry run pytest
env:
Expand All @@ -57,10 +55,11 @@ jobs:
minio:
# not possible to use official minio image since it requires commands to start up
# which gh doesn't support :(
image: bitnami/minio:2024.1.16
image: bitnami/minio:2024.12.13
env:
MINIO_ROOT_USER: ${{env.MINIO_ROOT_USER}}
MINIO_ROOT_PASSWORD: ${{env.MINIO_ROOT_PASSWORD}}
MINIO_DEFAULT_BUCKETS: ${{env.MINIO_LOCAL_BUCKET_NAME}}
ports:
- 9000:9000
options: >-
Expand Down

0 comments on commit 4a12e1f

Please sign in to comment.