Skip to content

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

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

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
pip install pytest requests boto3
- 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