Move QuantumProgram related tests to this repo (#406) #1260
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |