Skip to content

Fix local_pauli twirling with Clifford and non-Clifford fractional entanglers in the same box #1268

Fix local_pauli twirling with Clifford and non-Clifford fractional entanglers in the same box

Fix local_pauli twirling with Clifford and non-Clifford fractional entanglers in the same box #1268

Workflow file for this run

name: Test
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
tests:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.10", "3.11", "3.12", "3.13"] # qiskit-aer doesn't build wheels for 3.14
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install ".[dev,vis]"
- name: Pre-commit checks (linting)
if: matrix.python-version == '3.12'
run: |
pre-commit run
- name: Test with pytest
run: |
# test/performance configured to be ignored in pyproject.toml
python -m pytest
# test/performance are then ran in a lighter version as a smoke test
python -m pytest test/performance --benchmark-disable --performance-light