Skip to content

Production-readiness refactor: drop MinIO, make Crate IDs more robust, add async validation and offline cache #127

Production-readiness refactor: drop MinIO, make Crate IDs more robust, add async validation and offline cache

Production-readiness refactor: drop MinIO, make Crate IDs more robust, add async validation and offline cache #127

Workflow file for this run

name: Unit Tests
on:
pull_request:
branches: [ develop ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements-dev.txt
- name: Run tests (excluding integration tests)
run: |
python -m pytest --ignore=tests/test_integration.py