Skip to content

add some prints for response and sizeof #1023

add some prints for response and sizeof

add some prints for response and sizeof #1023

Workflow file for this run

name: Test on Push on Linux64
on:
push:
# Required shell entrypoint to have properly configured bash shell
defaults:
run:
shell: bash -l {0}
jobs:
linux:
runs-on: "ubuntu-latest"
strategy:
matrix:
python-version: ["3.14"] # latest only
fail-fast: false
name: Linux Python ${{ matrix.python-version }}
steps:
- uses: actions/checkout@v5
with:
fetch-depth: 0
- uses: conda-incubator/setup-miniconda@v3
with:
activate-environment: activestorage
environment-file: environment.yml
python-version: ${{ matrix.python-version }}
miniforge-version: "latest"
use-mamba: true
- run: conda --version
- run: python -V
- run: pip install -e .
- run: conda list
- run: flake8 --exclude tests,doc --max-line-length 120 --ignore F405,F401
- run: pytest -n 2 -m "not slow" --junitxml=report-1.xml
- uses: codecov/codecov-action@v5