[executors] fix: add __init__.py to entrypoints and refine logging #9
Workflow file for this run
This file contains hidden or 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: Run tests for garf-exporter | |
| on: | |
| workflow_dispatch: | |
| pull_request: | |
| branches: [main] | |
| paths: | |
| - 'libs/exporters/**' | |
| env: | |
| UV_SYSTEM_PYTHON: 1 | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"] | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Setup uv | |
| uses: astral-sh/setup-uv@v5 | |
| with: | |
| version: "0.5.4" | |
| enable-cache: true | |
| - name: Install dependencies | |
| run: | | |
| uv pip install pytest | |
| uv pip install -e libs/core/.[all] | |
| uv pip install -e libs/io/.[all] | |
| uv pip install -e libs/executors/.[all] | |
| - name: Test garf-exporters | |
| run: | | |
| cd libs/exporters/ | |
| uv pip install -e . | |
| pytest tests/unit |