change back to QuantumCircuit.from_qasm_str (#581) #2433
This file contains 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: Tests for 1.0 | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: [3.9, '3.10', '3.11'] | |
steps: | |
- name: Cancel Previous Runs | |
uses: styfle/[email protected] | |
with: | |
access_token: ${{ github.token }} | |
- uses: actions/checkout@v2 | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install git+https://github.com/PennyLaneAI/pennylane.git | |
pip install -r requirements-ci.txt | |
pip install wheel pytest pytest-cov pytest-mock flaky --upgrade | |
pip freeze | |
- name: Install Plugin | |
run: | | |
pip install git+https://github.com/PennyLaneAI/pennylane-qiskit.git@${{ github.ref }} | |
pip freeze | |
- name: Run standard Qiskit plugin tests | |
# Run the standard tests with the most recent version of Qiskit | |
run: python -m pytest tests -k 'not test_ibmq.py and not test_runtime.py' --cov=pennylane_qiskit --cov-report=term-missing --cov-report=xml -p no:warnings --tb=native | |
- name: Upload coverage to Codecov | |
uses: codecov/codecov-action@v4 | |
with: | |
token: ${{ secrets.codecov_token }} | |
file: ./coverage.xml | |
integration-tests: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Cancel Previous Runs | |
uses: styfle/[email protected] | |
with: | |
access_token: ${{ github.token }} | |
- uses: actions/checkout@v2 | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.9 | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install git+https://github.com/PennyLaneAI/pennylane.git | |
pip install -r requirements-ci.txt | |
pip install wheel pytest pytest-cov pytest-mock pytest-benchmark flaky --upgrade | |
- name: Install Plugin | |
run: | | |
python setup.py bdist_wheel | |
pip install dist/PennyLane*.whl | |
- name: Run tests | |
run: | | |
pl-device-test --device=qiskit.basicsim --tb=short --skip-ops --shots=20000 --device-kwargs backend=basic_simulator | |
pl-device-test --device=qiskit.aer --tb=short --skip-ops --shots=20000 --device-kwargs backend=qasm_simulator | |
pl-device-test --device=qiskit.aer --tb=short --skip-ops --shots=None --device-kwargs backend=statevector_simulator | |
pl-device-test --device=qiskit.aer --tb=short --skip-ops --shots=None --device-kwargs backend=unitary_simulator | |
- name: Upload coverage to Codecov | |
uses: codecov/codecov-action@v4 | |
with: | |
token: ${{ secrets.codecov_token }} | |
file: ./coverage.xml |