Upgrade extensions template #960
main.yml
on: pull_request
Matrix: build_all
Matrix: build_extensions
Matrix: build_serverextension
Annotations
22 errors, 23 warnings, and 26 notices
build_extensions (documents, ubuntu-latest)
Process completed with exit code 1.
|
build_all (ubuntu-latest)
Process completed with exit code 1.
|
build_all (macos-latest)
Process completed with exit code 1.
|
build_extensions (documents, macos-latest)
Process completed with exit code 1.
|
tests/cell_toolbar.spec.ts:3:5 βΊ should add buttons on code cell and markdown cell:
cell-toolbar/ui-tests/tests/cell_toolbar.spec.ts#L16
1) tests/cell_toolbar.spec.ts:3:5 βΊ should add buttons on code cell and markdown cell ββββββββββββ
Error: Timed out 5000ms waiting for expect(locator).toBeVisible()
Locator: locator('.jp-cell-toolbar button[data-command="toolbar-button:run-code-cell"]')
Expected: visible
Received: <element(s) not found>
Call log:
- expect.toBeVisible with timeout 5000ms
- waiting for locator('.jp-cell-toolbar button[data-command="toolbar-button:run-code-cell"]')
14 |
15 | await page.notebook.setCell(0, 'code', 'print("Hello, JupyterLab")');
> 16 | await expect(page.locator(RUN_CODE)).toBeVisible();
| ^
17 | await expect(page.locator(RENDER_MD)).toBeHidden();
18 |
19 | await page.locator(RUN_CODE).click();
at /home/runner/work/extension-examples/extension-examples/cell-toolbar/ui-tests/tests/cell_toolbar.spec.ts:16:40
|
build_extensions (cell-toolbar, ubuntu-latest)
Process completed with exit code 1.
|
tests/custom-log-console.spec.ts:3:5 βΊ should open a log panel and filter message depending on the log level.:
custom-log-console/ui-tests/tests/custom-log-console.spec.ts#L1
1) tests/custom-log-console.spec.ts:3:5 βΊ should open a log panel and filter message depending on the log level.
Test timeout of 60000ms exceeded.
|
tests/custom-log-console.spec.ts:3:5 βΊ should open a log panel and filter message depending on the log level.:
custom-log-console/ui-tests/tests/custom-log-console.spec.ts#L43
1) tests/custom-log-console.spec.ts:3:5 βΊ should open a log panel and filter message depending on the log level.
Error: proxy.click: Test timeout of 60000ms exceeded.
Call log:
- waiting for locator('button:has-text("Add Checkpoint")')
41 |
42 | // Click button:has-text("Add Checkpoint")
> 43 | await page.click('button:has-text("Add Checkpoint")');
| ^
44 |
45 | expect(await page.waitForSelector('hr')).toBeTruthy();
46 |
at /home/runner/work/extension-examples/extension-examples/custom-log-console/ui-tests/tests/custom-log-console.spec.ts:43:14
|
build_extensions (custom-log-console, ubuntu-latest)
Process completed with exit code 1.
|
tests/toolbar-button.spec.ts:3:5 βΊ should clear all outputs when clicked:
toolbar-button/ui-tests/tests/toolbar-button.spec.ts#L1
1) tests/toolbar-button.spec.ts:3:5 βΊ should clear all outputs when clicked ββββββββββββββββββββββ
Test timeout of 60000ms exceeded.
|
tests/toolbar-button.spec.ts:3:5 βΊ should clear all outputs when clicked:
toolbar-button/ui-tests/tests/toolbar-button.spec.ts#L10
1) tests/toolbar-button.spec.ts:3:5 βΊ should clear all outputs when clicked ββββββββββββββββββββββ
Error: locator.click: Test timeout of 60000ms exceeded.
Call log:
- waiting for getByRole('main').locator('[role="tabpanel"][id="id-2ef8b302-c4b5-4c13-9172-b482b308bff6"]').locator('.jp-NotebookPanel-notebook').first().locator('.jp-Cell[data-windowed-list-index="0"]')
- locator resolved to <div tabindex="0" data-windowed-list-index="0" aria-label="Code Cell Content" class="lm-Widget jp-Cell jp-CodeCell jp-Notebook-cell jp-mod-selected jp-mod-noOutputs jp-mod-active">β¦</div>
- attempting click action
2 Γ waiting for element to be visible, enabled and stable
- element is visible, enabled and stable
- scrolling into view if needed
- done scrolling
- <span class="jp-ToolbarButtonComponent-label">Python 3 (ipykernel)</span> from <jp-toolbar role="toolbar" orientation="horizontal" aria-label="notebook actions" aria-orientation="horizontal" class="lm-Widget jp-Toolbar jp-NotebookPanel-toolbar">β¦</jp-toolbar> subtree intercepts pointer events
- retrying click action
- waiting 20ms
2 Γ waiting for element to be visible, enabled and stable
- element is visible, enabled and stable
- scrolling into view if needed
- done scrolling
- <span class="jp-ToolbarButtonComponent-label">Python 3 (ipykernel)</span> from <jp-toolbar role="toolbar" orientation="horizontal" aria-label="notebook actions" aria-orientation="horizontal" class="lm-Widget jp-Toolbar jp-NotebookPanel-toolbar">β¦</jp-toolbar> subtree intercepts pointer events
- retrying click action
- waiting 100ms
106 Γ waiting for element to be visible, enabled and stable
- element is visible, enabled and stable
- scrolling into view if needed
- done scrolling
- <span class="jp-ToolbarButtonComponent-label">Python 3 (ipykernel)</span> from <jp-toolbar role="toolbar" orientation="horizontal" aria-label="notebook actions" aria-orientation="horizontal" class="lm-Widget jp-Toolbar jp-NotebookPanel-toolbar">β¦</jp-toolbar> subtree intercepts pointer events
- retrying click action
- waiting 500ms
8 | await page.waitForSelector('text=| Idle');
9 |
> 10 | await page.notebook.setCell(0, 'code', 'print("Hello, JupyterLab")');
| ^
11 | await page.keyboard.press('Shift+Enter');
12 |
13 | await page.notebook.setCell(1, 'code', 'print("Welcome to JupyterLab")');
at NotebookHelper.selectCells (/home/runner/work/extension-examples/extension-examples/toolbar-button/ui-tests/node_modules/@jupyterlab/galata/src/helpers/notebook.ts:1160:21)
at NotebookHelper.setCell (/home/runner/work/extension-examples/extension-examples/toolbar-button/ui-tests/node_modules/@jupyterlab/galata/src/helpers/notebook.ts:1250:9)
at /home/runner/work/extension-examples/extension-examples/toolbar-button/ui-tests/tests/toolbar-button.spec.ts:10:3
|
build_extensions (toolbar-button, ubuntu-latest)
Process completed with exit code 1.
|
tests/jupyterlab_examples_codemirror_extension.spec.ts:3:5 βΊ should display zebra stripes in cell editors:
codemirror-extension/ui-tests/tests/jupyterlab_examples_codemirror_extension.spec.ts#L1
1) tests/jupyterlab_examples_codemirror_extension.spec.ts:3:5 βΊ should display zebra stripes in cell editors
Test timeout of 60000ms exceeded.
|
tests/jupyterlab_examples_codemirror_extension.spec.ts:3:5 βΊ should display zebra stripes in cell editors:
codemirror-extension/ui-tests/tests/jupyterlab_examples_codemirror_extension.spec.ts#L31
1) tests/jupyterlab_examples_codemirror_extension.spec.ts:3:5 βΊ should display zebra stripes in cell editors
Error: locator.click: Test timeout of 60000ms exceeded.
Call log:
- waiting for getByRole('tab', { name: 'CodeMirror CodeMirror' }).getByText('CodeMirror')
29 | .getByRole('tab', { name: 'CodeMirror CodeMirror' })
30 | .getByText('CodeMirror')
> 31 | .click();
| ^
32 |
33 | // Change the step
34 | await page
at /home/runner/work/extension-examples/extension-examples/codemirror-extension/ui-tests/tests/jupyterlab_examples_codemirror_extension.spec.ts:31:6
|
build_extensions (codemirror-extension, ubuntu-latest)
Process completed with exit code 1.
|
tests/kernel-output.spec.ts:3:5 βΊ should open a panel connected to a notebook kernel:
kernel-output/ui-tests/tests/kernel-output.spec.ts#L1
1) tests/kernel-output.spec.ts:3:5 βΊ should open a panel connected to a notebook kernel ββββββββββ
Test timeout of 120000ms exceeded.
|
tests/kernel-output.spec.ts:3:5 βΊ should open a panel connected to a notebook kernel:
kernel-output/ui-tests/tests/kernel-output.spec.ts#L30
1) tests/kernel-output.spec.ts:3:5 βΊ should open a panel connected to a notebook kernel ββββββββββ
Error: locator.selectOption: Test timeout of 120000ms exceeded.
Call log:
- waiting for locator('.jp-Dialog-body').locator('select')
- locator resolved to <select class="jp-mod-styled">β¦</select>
- attempting select option action
2 Γ waiting for element to be visible and enabled
- did not find some options
- retrying select option action
- waiting 20ms
2 Γ waiting for element to be visible and enabled
- did not find some options
- retrying select option action
- waiting 100ms
217 Γ waiting for element to be visible and enabled
- did not find some options
- retrying select option action
- waiting 500ms
28 |
29 | // Select Notebook kernel
> 30 | await page.locator('.jp-Dialog-body').locator('select').selectOption({
| ^
31 | label: 'Untitled.ipynb'
32 | });
33 |
at /home/runner/work/extension-examples/extension-examples/kernel-output/ui-tests/tests/kernel-output.spec.ts:30:59
|
build_extensions (kernel-output, ubuntu-latest)
Process completed with exit code 1.
|
build_extensions (documents, windows-latest)
Process completed with exit code 1.
|
build_all (windows-latest)
Process completed with exit code 1.
|
build_extensions (log-messages, ubuntu-latest)
The job running on runner GitHub Actions 49 has exceeded the maximum execution time of 15 minutes.
|
build_extensions (log-messages, ubuntu-latest)
The operation was canceled.
|
build_extensions (documents, ubuntu-latest)
No files were found with the provided path: documents/ui-tests/test-results. No artifacts will be uploaded.
|
build_extensions (clap-button-message, ubuntu-latest)
No files were found with the provided path: clap-button-message/ui-tests/test-results. No artifacts will be uploaded.
|
build_extensions (hello-world, ubuntu-latest)
No files were found with the provided path: hello-world/ui-tests/test-results. No artifacts will be uploaded.
|
build_extensions (toparea-text-widget, ubuntu-latest)
No files were found with the provided path: toparea-text-widget/ui-tests/test-results. No artifacts will be uploaded.
|
build_extensions (command-palette, ubuntu-latest)
No files were found with the provided path: command-palette/ui-tests/test-results. No artifacts will be uploaded.
|
build_extensions (kernel-messaging, ubuntu-latest)
No files were found with the provided path: kernel-messaging/ui-tests/test-results. No artifacts will be uploaded.
|
build_extensions (datagrid, ubuntu-latest)
No files were found with the provided path: datagrid/ui-tests/test-results. No artifacts will be uploaded.
|
build_extensions (settings, ubuntu-latest)
No files were found with the provided path: settings/ui-tests/test-results. No artifacts will be uploaded.
|
build_extensions (metadata-form, ubuntu-latest)
No files were found with the provided path: metadata-form/ui-tests/test-results. No artifacts will be uploaded.
|
build_extensions (completer, ubuntu-latest)
No files were found with the provided path: completer/ui-tests/test-results. No artifacts will be uploaded.
|
build_extensions (launcher, ubuntu-latest)
No files were found with the provided path: launcher/ui-tests/test-results. No artifacts will be uploaded.
|
build_extensions (shout-button-message, ubuntu-latest)
No files were found with the provided path: shout-button-message/ui-tests/test-results. No artifacts will be uploaded.
|
build_extensions (main-menu, ubuntu-latest)
No files were found with the provided path: main-menu/ui-tests/test-results. No artifacts will be uploaded.
|
build_extensions (commands, ubuntu-latest)
No files were found with the provided path: commands/ui-tests/test-results. No artifacts will be uploaded.
|
build_extensions (context-menu, ubuntu-latest)
No files were found with the provided path: context-menu/ui-tests/test-results. No artifacts will be uploaded.
|
build_extensions (signals, ubuntu-latest)
No files were found with the provided path: signals/ui-tests/test-results. No artifacts will be uploaded.
|
build_extensions (react-widget, ubuntu-latest)
No files were found with the provided path: react-widget/ui-tests/test-results. No artifacts will be uploaded.
|
build_extensions (widgets, ubuntu-latest)
No files were found with the provided path: widgets/ui-tests/test-results. No artifacts will be uploaded.
|
build_extensions (contentheader, ubuntu-latest)
No files were found with the provided path: contentheader/ui-tests/test-results. No artifacts will be uploaded.
|
build_extensions (notifications, ubuntu-latest)
No files were found with the provided path: notifications/ui-tests/test-results. No artifacts will be uploaded.
|
build_extensions (state, ubuntu-latest)
No files were found with the provided path: state/ui-tests/test-results. No artifacts will be uploaded.
|
build_serverextension (ubuntu-latest)
No files were found with the provided path: server-extension/ui-tests/test-results. No artifacts will be uploaded.
|
build_extensions (log-messages, ubuntu-latest)
No files were found with the provided path: log-messages/ui-tests/test-results. No artifacts will be uploaded.
|
π Playwright Run Summary
1 passed (8.8s)
|
π Playwright Run Summary
1 passed (7.9s)
|
π Playwright Run Summary
1 passed (7.8s)
|
π Playwright Run Summary
1 passed (8.2s)
|
π Playwright Run Summary
1 passed (9.7s)
|
π Playwright Run Summary
1 passed (9.3s)
|
π Playwright Run Summary
1 failed
tests/cell_toolbar.spec.ts:3:5 βΊ should add buttons on code cell and markdown cell βββββββββββββ
|
π Playwright Run Summary
1 passed (9.4s)
|
π Playwright Run Summary
1 passed (11.1s)
|
π Playwright Run Summary
1 passed (12.1s)
|
π Playwright Run Summary
2 passed (11.4s)
|
π Playwright Run Summary
1 passed (7.9s)
|
π Playwright Run Summary
1 passed (7.9s)
|
π Playwright Run Summary
1 passed (7.8s)
|
π Playwright Run Summary
1 passed (8.6s)
|
π Playwright Run Summary
1 passed (8.4s)
|
π Playwright Run Summary
1 passed (8.5s)
|
π Playwright Run Summary
1 passed (8.2s)
|
π Playwright Run Summary
1 passed (9.2s)
|
π Playwright Run Summary
1 passed (12.1s)
|
π Playwright Run Summary
1 passed (9.1s)
|
π Playwright Run Summary
1 passed (8.1s)
|
π Playwright Run Summary
1 failed
tests/custom-log-console.spec.ts:3:5 βΊ should open a log panel and filter message depending on the log level.
|
π Playwright Run Summary
1 failed
tests/toolbar-button.spec.ts:3:5 βΊ should clear all outputs when clicked βββββββββββββββββββββββ
|
π Playwright Run Summary
1 failed
tests/jupyterlab_examples_codemirror_extension.spec.ts:3:5 βΊ should display zebra stripes in cell editors
|
π Playwright Run Summary
1 failed
tests/kernel-output.spec.ts:3:5 βΊ should open a panel connected to a notebook kernel βββββββββββ
|
Artifacts
Produced during runtime
Name | Size | |
---|---|---|
ui-test-output-cell-toolbar
|
249 KB |
|
ui-test-output-codemirror-extension
|
1.17 MB |
|
ui-test-output-custom-log-console
|
719 KB |
|
ui-test-output-kernel-output
|
1.41 MB |
|
ui-test-output-toolbar-button
|
810 KB |
|