Skip to content

chore: refactor tests #43

chore: refactor tests

chore: refactor tests #43

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: Run tests
run: make test PYTEST_ARGS="-v --cov=opendalfs --cov-report=xml"