Skip to content

Commit 64e1a7f

Browse files
authored
Fix CI requirements for Changed files test (#6243)
Problem: cirq-ft/cirq_ft/algos/qrom_test.py::test_notebook fails when executed from `Changed files test` CI because of missing dependencies. Solution: Install notebook-testing requirements for this CI job.
1 parent 9fbaa05 commit 64e1a7f

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

dev_tools/conf/pip-install-minimal-for-pytest-changed-files.sh

+4-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,10 @@ set -e
2020
cd "$( dirname "${BASH_SOURCE[0]}" )"
2121
cd "$(git rev-parse --show-toplevel)"
2222

23-
reqs=( -r dev_tools/requirements/pytest-minimal.env.txt )
23+
reqs=(
24+
-r dev_tools/requirements/pytest-minimal.env.txt
25+
-r dev_tools/requirements/deps/notebook.txt
26+
)
2427

2528
# Install contrib requirements only if needed.
2629
changed=$(git diff --name-only origin/master | grep "cirq/contrib" || true)

0 commit comments

Comments
 (0)