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

Fix ci-daily notebook failures on Mac OS X #6444

Merged
merged 5 commits into from
Feb 7, 2024
Merged
Show file tree
Hide file tree
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
6 changes: 4 additions & 2 deletions .github/workflows/ci-daily.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,8 @@ jobs:
pip install \
-r dev_tools/requirements/deps/format.txt \
-r dev_tools/requirements/deps/pylint.txt \
-r dev_tools/requirements/deps/pytest.txt
-r dev_tools/requirements/deps/pytest.txt \
-r dev_tools/requirements/deps/notebook.txt
- name: Run Quil dependencies
run: docker-compose -f cirq-rigetti/docker-compose.test.yaml up -d
- name: Pytest check
Expand Down Expand Up @@ -60,7 +61,8 @@ jobs:
pip install --pre cirq &&
pip install -r dev_tools/requirements/deps/format.txt &&
pip install -r dev_tools/requirements/deps/pylint.txt &&
pip install -r dev_tools/requirements/deps/pytest.txt
pip install -r dev_tools/requirements/deps/pytest.txt &&
pip install -r dev_tools/requirements/deps/notebook.txt
- name: Pytest Windows
run: check/pytest -n auto --ignore=cirq-core/cirq/contrib --enable-slow-tests
shell: bash
Expand Down
4 changes: 3 additions & 1 deletion dev_tools/requirements/deps/notebook.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,9 @@ ipykernel==5.3.4

# for executing notebooks in tests
papermill~=2.3.2
quimb~=1.6.0

# for notebooks that do `pip install cirq-core[contrib]`
-r ../../../cirq-core/cirq/contrib/requirements.txt

# assumed to be part of colab
seaborn~=0.11.1
Loading