Skip to content

Commit 8451709

Browse files
committed
test
1 parent a307342 commit 8451709

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

.github/workflows/reusable_tutorials.yml

+10-2
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,15 @@ jobs:
3030
runs-on: 4-core-ubuntu
3131
steps:
3232
- uses: actions/checkout@v4
33-
- name: Set up Python
34-
uses: actions/setup-python@v5
33+
# - name: Set up Python
34+
# uses: actions/setup-python@v5
35+
# with:
36+
# python-version: "3.10"
37+
- uses: conda-incubator/setup-miniconda@v3
3538
with:
39+
auto-update-conda: true
3640
python-version: "3.10"
41+
activate-environment: test
3742
- name: Fetch all history for all tags and branches
3843
# We need to do this so setuptools_scm knows how to set the BoTorch version.
3944
run: git fetch --prune --unshallow
@@ -46,6 +51,9 @@ jobs:
4651
- name: Install Scipy
4752
run: |
4853
uv pip install scipy==${{ inputs.scipy_version }} --system
54+
- name: Conda list
55+
shell: bash -el {0}
56+
run: conda list
4957
- name: Run tutorials with smoke test
5058
run: |
5159
# export OMP_NUM_THREADS=1

0 commit comments

Comments
 (0)