ionq-stable-latest #1628
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
# Workflow template for testing plugins against PennyLane latest | |
name: ionq-stable-latest | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
schedule: | |
- cron: '0 0 * * *' | |
workflow_dispatch: | |
env: | |
PLUGIN_REPO: PennyLaneAI/pennylane-ionq | |
PLUGIN_BRANCH: master | |
PLUGIN_PACKAGE: pennylane_ionq | |
PENNYLANE_BRANCH: master | |
IONQ_API_KEY: ${{ secrets.IONQ_API_KEY }} | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
steps: | |
- name: Cancel Previous Runs | |
uses: styfle/cancel-workflow-action@0.4.1 | |
with: | |
access_token: ${{ github.token }} | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: "3.10" | |
- name: Install requirements | |
run: | | |
pip install --upgrade pip | |
pip install 'pytest<8.1.0' | |
pip install pytest-mock pytest-cov flaky pytest-benchmark | |
pip freeze | |
- name: Install PennyLane and Plugin | |
run: | | |
pip install git+https://github.com/PennyLaneAI/pennylane.git \ | |
${{ env.PLUGIN_PACKAGE }} --upgrade | |
- name: Get plugin version | |
id: plugin-version | |
run: | | |
PLUGIN_VERSION=$(python -c "import pkg_resources as pkg; print(pkg.get_distribution('${{ env.PLUGIN_PACKAGE }}').version)") | |
echo "version=$PLUGIN_VERSION" >> $GITHUB_OUTPUT | |
- uses: actions/checkout@v2 | |
with: | |
repository: ${{ env.PLUGIN_REPO }} | |
path: plugin_repo | |
ref: v${{ steps.plugin-version.outputs.version }} | |
- name: Run PennyLane device integration tests | |
run: | | |
pl-device-test --device=ionq.simulator --tb=short --skip-ops --shots=10000 | |
- name: Run plugin tests | |
run: | | |
python -m pytest plugin_repo/tests --tb=short \ | |
-W "error::pennylane.PennyLaneDeprecationWarning" \ | |
-W "ignore:QubitDevice:pennylane.PennyLaneDeprecationWarning" \ | |
-W "ignore:qml.operation.Tensor:pennylane.PennyLaneDeprecationWarning" \ | |
-W "ignore:QubitStateVector:pennylane.PennyLaneDeprecationWarning" |