-
Notifications
You must be signed in to change notification settings - Fork 3
75 lines (61 loc) · 2.31 KB
/
qiskit-stable-latest.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
# Workflow template for testing plugins against PennyLane latest
name: qiskit-stable-latest
on:
push:
branches:
- master
pull_request:
schedule:
- cron: '0 0 * * *'
workflow_dispatch:
env:
PLUGIN_REPO: PennyLaneAI/pennylane-qiskit
PLUGIN_BRANCH: master
PLUGIN_PACKAGE: pennylane_qiskit
PENNYLANE_BRANCH: master
IBMQX_TOKEN: ${{ secrets.IBMQX_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 qiskit
pip install --upgrade pyscf
pip install 'pytest<8.1.0'
pip install pytest-mock pytest-cov flaky pytest-benchmark
pip install semantic-version
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=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
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: Run plugin tests
run: python -m pytest plugin_repo/tests -W "error::pennylane.PennyLaneDeprecationWarning" --tb=short