Unit Tests #989
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
# This code is part of Qiskit. | |
# | |
# (C) Copyright IBM 2022. | |
# | |
# This code is licensed under the Apache License, Version 2.0. You may | |
# obtain a copy of this license in the LICENSE.txt file in the root directory | |
# of this source tree or at http://www.apache.org/licenses/LICENSE-2.0. | |
# | |
# Any modifications or derivative works of this code must retain this | |
# copyright notice, and modified files need to carry a notice indicating | |
# that they have been altered from the originals. | |
name: Unit Tests | |
on: | |
schedule: | |
- cron: '0 5 * * *' | |
workflow_dispatch: | |
jobs: | |
unit-tests-latest-qiskit-terra: | |
if: github.repository_owner == 'Qiskit' | |
name: Run unit tests with latest code of Qiskit | |
runs-on: "ubuntu-latest" | |
env: | |
LOG_LEVEL: DEBUG | |
STREAM_LOG: True | |
QISKIT_IN_PARALLEL: True | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Set up Python 3.9 | |
uses: actions/setup-python@v5 | |
with: | |
python-version: 3.9 | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
# Installing the complete environment should happen in one `pip install` step, | |
# or pip will generally allow broken combinations of packages to be installed. | |
pip install -c constraints.txt -r requirements-dev.txt -r requirements-visual.txt -e . git+https://github.com/Qiskit/qiskit.git | |
- name: Run tests | |
# running unit tests against latest (non-released) code of qiskit-terra gives a basic level | |
# of confidence that the integration between qiskit-ibm-runtime and qiskit-terra works | |
run: make unit-test |