Skip to content

Commit

Permalink
Fix installed packages in randomised tests (#11477)
Browse files Browse the repository at this point in the history
The randomised test suite does not to install the long-deprecated
`qiskit_ibmq_provider`, and doing so causes an old, incompatible version
of `qiskit-terra` to be installed, breaking the editable install.
  • Loading branch information
jakelishman authored Jan 3, 2024
1 parent 19767bc commit 5eabdbe
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/randomized_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@ jobs:
- 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 coveralls -c constraints.txt
python -m pip install -c constraints.txt -e .
python -m pip install "qiskit-ibmq-provider" -c constraints.txt
python -m pip install "qiskit-aer"
env:
SETUPTOOLS_ENABLE_FEATURES: "legacy-editable"
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:
Expand Down

0 comments on commit 5eabdbe

Please sign in to comment.