Skip to content

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

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 #136

Workflow file for this run

name: Integration 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
# Keep in sync with requirements-dev.txt
pip install pytest==9.1.0 requests==2.33.1 boto3==1.43.29
- name: Run integration tests (brings up the compose stack)
run: |
cp example.env .env
pytest -s -v tests/test_integration.py
- name: Ensure Docker Compose is shut down
if: always()
run: >
docker compose -f docker-compose-develop.yml -p cratey_integration
--profile objectstore down -v || true