Skip to content

Commit

Permalink
more
Browse files Browse the repository at this point in the history
  • Loading branch information
pmeier committed Sep 17, 2024
1 parent 2ee454a commit 6cf13d1
Showing 1 changed file with 11 additions and 21 deletions.
32 changes: 11 additions & 21 deletions .github/actions/setup-test-env/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,22 +29,23 @@ runs:
# Display conda info
conda info
# - name: Restore conda environment
# id: cache
# uses: actions/cache@v4
# with:
# path: ${{ env.CONDA }}/envs
# key:
# env-${{ runner.os }}-${{ runner.arch }}-${{ inputs.python-version
# }}|${{ hashFiles('environment-dev.yml', 'pyproject.toml') }}
# restore-keys: |
# env-${{ runner.os }}-${{ runner.arch }}-${{ inputs.python-version }}

- id: install
shell: bash -el {0}
run: |
# Install bokeh-fastapi
which pip
echo '#########'
pip -V
echo '#########'
conda install pip
echo '#########'
which pip
echo '#########'
pip -V
echo '#########'
pip install .
exit 1
BOKEH_VERSION=$(conda list --json | jq --raw-output '.[] | select(.name=="bokeh").version')
echo "bokeh-version=${BOKEH_VERSION}" | tee --append "${GITHUB_OUTPUT}"
Expand All @@ -55,17 +56,6 @@ runs:
path: ./tests/bokeh
ref: ${{ steps.install.outputs.bokeh-version }}

# - name: Restore conda environment
# id: cache
# uses: actions/cache@v4
# with:
# path: ${{ env.CONDA }}/envs
# key:
# env-${{ runner.os }}-${{ runner.arch }}-${{ inputs.python-version
# }}|${{ hashFiles('environment-dev.yml', 'pyproject.toml') }}
# restore-keys: |
# env-${{ runner.os }}-${{ runner.arch }}-${{ inputs.python-version }}

- # if: steps.cache.outputs.cache-hit != 'true'
shell: bash
run: |
Expand Down

0 comments on commit 6cf13d1

Please sign in to comment.