Skip to content

fix: passthrough Scylla manifest UploadPartCopy with full-object range #299

fix: passthrough Scylla manifest UploadPartCopy with full-object range

fix: passthrough Scylla manifest UploadPartCopy with full-object range #299

Workflow file for this run

name: Tests
on:
push:
branches: [main]
pull_request:
workflow_dispatch:
jobs:
unit:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v7
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: '3.14'
cache: 'pip'
- name: Install uv
run: pip install uv
- name: Install dependencies
run: uv sync --extra dev
- name: Run unit tests
run: make test-unit
integration:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
shard: [memory_usage, memory_leak, memory_copy, core, multipart, copy_range, misc]
timeout-minutes: ${{ matrix.shard == 'memory_copy' && 35 || (contains(fromJSON('["memory_usage", "memory_leak"]'), matrix.shard) && 15 || 10) }}
steps:
- uses: actions/checkout@v7
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: '3.14'
cache: 'pip'
- name: Install uv
run: pip install uv
- name: Install dependencies
run: uv sync --extra dev
- name: Run integration tests (${{ matrix.shard }})
run: make test-integration-shard SHARD=${{ matrix.shard }}