-
-
Notifications
You must be signed in to change notification settings - Fork 525
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
375 changed files
with
10,412 additions
and
2,652 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,7 +29,7 @@ concurrency: | |
|
||
defaults: | ||
run: | ||
shell: bash -el {0} | ||
shell: bash -e {0} | ||
|
||
env: | ||
DISPLAY: ":99.0" | ||
|
@@ -125,7 +125,7 @@ jobs: | |
name: Pixi lock | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: holoviz-dev/holoviz_tasks/pixi_lock@pixi | ||
- uses: holoviz-dev/holoviz_tasks/pixi_lock@v0 | ||
with: | ||
cache: ${{ github.event.inputs.cache == 'true' || github.event.inputs.cache == '' }} | ||
|
||
|
@@ -139,7 +139,7 @@ jobs: | |
matrix: ${{ fromJson(needs.setup.outputs.matrix) }} | ||
timeout-minutes: 90 | ||
steps: | ||
- uses: holoviz-dev/holoviz_tasks/pixi_install@pixi | ||
- uses: holoviz-dev/holoviz_tasks/pixi_install@v0 | ||
with: | ||
environments: ${{ matrix.environment }} | ||
opengl: true | ||
|
@@ -193,19 +193,19 @@ jobs: | |
OKTA_OAUTH_USER: ${{ secrets.OKTA_OAUTH_USER }} | ||
OKTA_OAUTH_PASSWORD: ${{ secrets.OKTA_OAUTH_PASSWORD }} | ||
steps: | ||
- uses: holoviz-dev/holoviz_tasks/pixi_install@pixi | ||
- uses: holoviz-dev/holoviz_tasks/pixi_install@v0 | ||
with: | ||
environments: ${{ matrix.environment }} | ||
id: install | ||
- name: Build pyodide wheels | ||
run: pixi run -e test-ui "python ./scripts/build_pyodide_wheels.py" | ||
- name: Launch JupyterLab | ||
shell: pixi run -e test-ui bash -el {0} | ||
shell: pixi run -e test-ui bash -e {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 -e {0} | ||
run: pixi run -e lite lite-build | ||
- name: Wait for JupyterLab | ||
uses: ifaxity/[email protected] | ||
|
@@ -227,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 -e {0} | ||
run: | | ||
jupyter lab stop 8887 || true | ||
- uses: codecov/codecov-action@v4 | ||
|
@@ -243,10 +243,10 @@ jobs: | |
fail-fast: false | ||
matrix: | ||
os: ["ubuntu-latest"] | ||
environment: ["test-core"] | ||
environment: ["test-core", "test-minimum"] | ||
timeout-minutes: 120 | ||
steps: | ||
- uses: holoviz-dev/holoviz_tasks/pixi_install@pixi | ||
- uses: holoviz-dev/holoviz_tasks/pixi_install@v0 | ||
with: | ||
environments: ${{ matrix.environment }} | ||
- name: Test Unit | ||
|
@@ -265,9 +265,19 @@ jobs: | |
environment: ["test-type"] | ||
timeout-minutes: 120 | ||
steps: | ||
- uses: holoviz-dev/holoviz_tasks/pixi_install@pixi | ||
- uses: holoviz-dev/holoviz_tasks/pixi_install@v0 | ||
with: | ||
environments: ${{ matrix.environment }} | ||
- name: Test Type | ||
run: | | ||
pixi run -e ${{ matrix.environment }} test-type || echo "Failed" | ||
result_test_suite: | ||
name: result:test | ||
needs: [unit_test_suite, ui_test_suite, core_test_suite, type_test_suite] | ||
if: always() | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: check for failures | ||
if: contains(needs.*.result, 'failure') || contains(needs.*.result, 'cancelled') | ||
run: echo job failed && exit 1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.