forked from Qiskit/qiskit
-
Notifications
You must be signed in to change notification settings - Fork 0
39 lines (38 loc) · 1.13 KB
/
randomized_tests.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
name: Randomized tests
on:
schedule:
- cron: '42 3 * * *'
workflow_dispatch:
jobs:
randomized_tests:
if: github.repository_owner == 'Qiskit'
name: Randomized tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
name: Install Python
with:
python-version: '3.8'
- name: Install dependencies
run: |
python -m pip install -U pip setuptools wheel
python -m pip install -U \
-c constraints.txt \
-r requirements.txt \
-r requirements-dev.txt \
coveralls \
qiskit-aer \
-e .
- name: Run randomized tests
run: make test_randomized
env:
RUST_BACKTRACE: 1
- name: Create comment on failed test run
if: ${{ failure() }}
uses: peter-evans/create-or-update-comment@v4
with:
issue-number: 2645
body: |
Randomized tests failed at commit ${{ github.sha }}.
_Logs_: ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}.