Skip to content

quantuminspire-latest-latest #205

quantuminspire-latest-latest

quantuminspire-latest-latest #205

# Workflow template for testing plugins against PennyLane latest
name: quantuminspire-latest-latest
on:
push:
branches:
- master
pull_request:
schedule:
- cron: '0 0 * * *'
workflow_dispatch:
env:
PLUGIN_REPO: QuTech-Delft/pennylane-quantuminspire
PLUGIN_BRANCH: master
PLUGIN_PACKAGE: pennylane_quantuminspire
PENNYLANE_BRANCH: master
QI_TOKEN: ${{ secrets.QI_TOKEN }}
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 --upgrade pennylane-qiskit
pip install --upgrade quantuminspire
pip install --upgrade qiskit
pip install pytest pytest-mock pytest-cov flaky
pip freeze
- name: Install PennyLane and Plugin
run: |
pip install git+https://github.com/PennyLaneAI/pennylane.git \
git+https://github.com/${{ env.PLUGIN_REPO }}.git@${{ env.PLUGIN_BRANCH }}
- uses: actions/checkout@v2
with:
repository: ${{ env.PLUGIN_REPO }}
path: plugin_repo
ref: ${{ env.PLUGIN_BRANCH }}
- name: Run PennyLane device integration tests
run: |
pl-device-test --device=quantuminspire.qi --tb=short --skip-ops --shots=4096 --device-kwargs backend='QX single-node simulator'
- name: Run plugin tests
run: python -m pytest plugin_repo/tests/unit_test --tb=short