Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use a patched qiskit-ibm-runtime when testing Qiskit main #1389

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -35,12 +35,15 @@ commands =
[testenv:qiskit-main]
usedevelop = True
install_command = pip install -U {opts} {packages}
deps =
{[testenv]deps}
git+https://github.com/wshanks/qiskit-ibm-runtime.git@no-provider
commands_pre =
# We must remove qiskit-terra because some dependencies pull it in and it
# conflicts with qiskit main. We must remove qiskit-ibm-provider because it gives
# an import error for qiskit main and it gets automatically imported by qiskit's
# plugin mechanism.
pip uninstall -y qiskit qiskit-terra qiskit-ibm-provider
pip uninstall -y qiskit qiskit-terra
pip install git+https://github.com/Qiskit/qiskit
commands = stestr run {posargs}

Expand Down Expand Up @@ -105,9 +108,12 @@ passenv =
PROD_BUILD
RELEASE_STRING
VERSION_STRING
deps =
{[testenv]deps}
git+https://github.com/wshanks/qiskit-ibm-runtime.git@no-provider
commands_pre =
# See comment for qiskit-main
pip uninstall -y qiskit qiskit-terra qiskit-ibm-provider
pip uninstall -y qiskit qiskit-terra
pip install git+https://github.com/Qiskit/qiskit
commands =
sphinx-build -j auto -T -W --keep-going -b html {posargs} docs/ docs/_build/html
Expand Down
Loading