-
Notifications
You must be signed in to change notification settings - Fork 2.4k
37 lines (36 loc) · 1.25 KB
/
slow.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
name: Slow nightly tests
on:
schedule:
- cron: '42 3 * * *'
workflow_dispatch:
jobs:
slow-tests:
if: github.repository_owner == 'Qiskit'
name: Full-test-run-with-slow
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
name: Install Python
with:
python-version: '3.10'
- name: Install dependencies
run: |
python -m pip install -U pip setuptools wheel
python -m pip install -U -r requirements.txt -c constraints.txt
python -m pip install -U -r requirements-dev.txt -c constraints.txt
python -m pip install -c constraints.txt -e .
python -m pip install "qiskit-aer" "z3-solver" "cplex" -c constraints.txt
- name: Run all tests including slow
run: stestr run
env:
RUST_BACKTRACE: 1
QISKIT_TESTS: "run_slow"
- name: Create comment on failed test run
if: ${{ failure() }}
uses: peter-evans/create-or-update-comment@v4
with:
issue-number: 7864
body: |
Nightly slow test run failed at commit ${{ github.sha }}.
_Logs_: ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}.