docs: add comments to hub and common files #62
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Integration test | |
env: | |
MINIO_ROOT_USER: admin | |
MINIO_ROOT_PASSWORD: s3cr3t_p4ssw0rd | |
MINIO_LOCAL_BUCKET_NAME: flame | |
MINIO_REMOTE_BUCKET_NAME: upload | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: 3.11 | |
- name: Install Poetry | |
run: python -m pip install poetry | |
- name: Install dependencies | |
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: | |
MINIO__ACCESS_KEY: ${{env.MINIO_ROOT_USER}} | |
MINIO__SECRET_KEY: ${{env.MINIO_ROOT_PASSWORD}} | |
MINIO__BUCKET: ${{env.MINIO_LOCAL_BUCKET_NAME}} | |
MINIO__ENDPOINT: localhost:9000 | |
HUB__AUTH_USERNAME: ${{secrets.HUB_AUTH_USERNAME}} | |
HUB__AUTH_PASSWORD: ${{secrets.HUB_AUTH_PASSWORD}} | |
services: | |
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 | |
env: | |
MINIO_ROOT_USER: ${{env.MINIO_ROOT_USER}} | |
MINIO_ROOT_PASSWORD: ${{env.MINIO_ROOT_PASSWORD}} | |
ports: | |
- 9000:9000 | |
options: >- | |
--health-cmd "curl -I http://localhost:9000/minio/health/live" | |
--health-interval 2s | |
--health-timeout 5s | |
--health-retries 5 |