Skip to content

Commit

Permalink
Change bash -el to bash -l
Browse files Browse the repository at this point in the history
  • Loading branch information
hoxbro committed Sep 16, 2024
1 parent dac1687 commit d203e06
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ on:

defaults:
run:
shell: bash -el {0}
shell: bash -l {0}

env:
PACKAGE: "panel"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ on:

defaults:
run:
shell: bash -el {0}
shell: bash -l {0}

env:
DISPLAY: ":99.0"
Expand Down
12 changes: 4 additions & 8 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ concurrency:

defaults:
run:
shell: bash -el {0}
shell: bash -l {0}

env:
DISPLAY: ":99.0"
Expand Down Expand Up @@ -199,17 +199,13 @@ jobs:
id: install
- name: Build pyodide wheels
run: pixi run -e test-ui "python ./scripts/build_pyodide_wheels.py"
- name: Set environment variables for macOS
if: contains(matrix.os, 'macos')
run: |
pixi shell-hook -e test-ui >> $HOME/.bashrc
- name: Launch JupyterLab
shell: pixi run -e test-ui bash -el {0}
shell: pixi run -e test-ui bash -l {0}
run: |
jupyter server extension enable panel.io.jupyter_server_extension --sys-prefix
(jupyter lab --config panel/tests/ui/jupyter_server_test_config.py --port 8887 > /tmp/jupyterlab_server.log 2>&1) &
- name: Build JupyterLite
shell: pixi run -e test-ui bash -el {0}
shell: pixi run -e test-ui bash -l {0}
run: pixi run -e lite lite-build
- name: Wait for JupyterLab
uses: ifaxity/[email protected]
Expand All @@ -231,7 +227,7 @@ jobs:
if-no-files-found: ignore
- name: Stop JupyterLab
if: always()
shell: pixi run -e test-ui bash -el {0}
shell: pixi run -e test-ui bash -l {0}
run: |
jupyter lab stop 8887 || true
- uses: codecov/codecov-action@v4
Expand Down

0 comments on commit d203e06

Please sign in to comment.