Skip to content

refactor: Use pure python to implment opendalfs (#25) #39

refactor: Use pure python to implment opendalfs (#25)

refactor: Use pure python to implment opendalfs (#25) #39

Workflow file for this run

name: Tests
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
integration-tests:
name: Integration Tests
runs-on: ubuntu-24.04
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v5
- name: Set up Python
run: uv python install
- name: Install the project
run: uv sync --locked --all-extras --dev
- name: Start MinIO server
run: |
docker compose -f tests/docker/docker-compose.yml up -d
# Wait for MinIO to be healthy
sleep 10
- name: Run tests
env:
MINIO_ROOT_USER: minioadmin
MINIO_ROOT_PASSWORD: minioadmin
run: uv run pytest -v --cov=opendalfs --cov-report=xml