Skip to content

Commit

Permalink
Apply suggested workaround for affected CI test
Browse files Browse the repository at this point in the history
  • Loading branch information
glatterf42 committed Dec 12, 2024
1 parent 02dadfa commit 7272227
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/pytest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,15 @@ jobs:
run: echo "RETICULATE_PYTHON=$pythonLocation" >> $GITHUB_ENV
shell: bash

# Workaround Python Path in R issue https://github.com/actions/runner-images/issues/11137
- name: Install system dependencies for R packages
if: ${{ matrix.os == 'ubuntu-latest' && matrix.python-version == '3.12' }}
run: |
sudo apt-get update
sudo apt-get install -y libcurl4-openssl-dev libssl-dev libxml2-dev
sudo apt-get install -y python3-pip python3-dev
pip3 install jupyter
- name: Install Python package and dependencies
# [docs] contains [tests], which contains [report,tutorial]
run: |
Expand All @@ -120,6 +129,8 @@ jobs:
# force = TRUE,
)
pip install jupyter
IRkernel::installspec()
# commented: for debugging
Expand Down

0 comments on commit 7272227

Please sign in to comment.