Update release.yml #1591
Annotations
7 errors, 1 warning, and 1 notice
Run Playwright tests:
tests/test_basic.spec.mjs#L1803
1) [chromium] › test_basic.spec.mjs:1798:1 › Test factorial error check for input with units ─────
Error: Timed out 10000ms waiting for expect(locator).toBeVisible()
Locator: locator('#cell-0').locator('text=Dimension Error')
Expected: visible
Received: <element(s) not found>
Call log:
- expect.toBeVisible with timeout 10000ms
- waiting for locator('#cell-0').locator('text=Dimension Error')
1801 | await page.waitForSelector('text=Updating...', {state: 'detached'});
1802 |
> 1803 | await expect(page.locator('#cell-0 >> text=Dimension Error')).toBeVisible();
| ^
1804 | });
1805 |
1806 | test('Test units applied to pi', async () => {
at /home/runner/work/EngineeringPaper.xyz/EngineeringPaper.xyz/tests/test_basic.spec.mjs:1803:65
|
Run Playwright tests:
tests/test_plotting.spec.mjs#L429
2) [chromium] › test_plotting.spec.mjs:419:1 › test scatter plot x-y scalar vector mismatch ──────
TimeoutError: locator.waitFor: Timeout 1000ms exceeded.
Call log:
- waiting for locator('#plot-expression-1-0').locator('text=Both the x and y values need to be a scalar value or a vector')
427 | await page.waitForSelector('.status-footer', { state: 'detached' });
428 |
> 429 | await page.locator('#plot-expression-1-0 >> text=Both the x and y values need to be a scalar value or a vector').waitFor({state: 'attached', timeout: 1000});
| ^
430 |
431 | });
432 |
at /home/runner/work/EngineeringPaper.xyz/EngineeringPaper.xyz/tests/test_plotting.spec.mjs:429:116
|
Run Playwright tests:
tests/test_system_solve.spec.mjs#L771
3) [chromium] › test_system_solve.spec.mjs:764:1 › Test numerical solution variable rendering ────
TimeoutError: locator.click: Timeout 120000ms exceeded.
Call log:
- waiting for locator('#add-row-0')
769 |
770 | await page.setLatex(0, String.raw`N+\theta =1`, 0);
> 771 | await page.locator('#add-row-0').click();
| ^
772 | await page.setLatex(0, String.raw`N-\theta =10`, 1);
773 | await page.locator('#system-parameterlist-0 math-field.editable').type('N~1, theta~3');
774 |
at /home/runner/work/EngineeringPaper.xyz/EngineeringPaper.xyz/tests/test_system_solve.spec.mjs:771:36
|
Run Playwright tests:
tests/test_file_save_open.spec.mjs#L147
4) [firefox] › test_file_save_open.spec.mjs:138:1 › Test opening file with results and syntax error
Error: fileChooser.setFiles: Test ended.
145 | const path = "tests/test_sheet_parsing_error.epxyz";
146 | page.on('filechooser', async (fileChooser) => {
> 147 | await fileChooser.setFiles(path);
| ^
148 | });
149 | await page.locator('#open-sheet').click();
150 |
at Page.<anonymous> (/home/runner/work/EngineeringPaper.xyz/EngineeringPaper.xyz/tests/test_file_save_open.spec.mjs:147:5)
|
Run Playwright tests:
tests/test_fluid_properties.spec.mjs#L553
5) [firefox] › test_fluid_properties.spec.mjs:541:1 › Test HAPropsSI fluid function in numerical solve
TimeoutError: locator.selectOption: Timeout 120000ms exceeded.
Call log:
- waiting for getByLabel('Fluid:').nth(1)
551 |
552 | await page.locator('#add-fluid-cell').click();
> 553 | await page.getByLabel('Fluid:').nth(1).selectOption('Humid Air (Psychrometrics)');
| ^
554 | await page.getByLabel('Output:').nth(1).selectOption({label: 'S - Mixture entropy per mass dry air - [J/kg/K]'});
555 | await page.getByLabel('Input 1:').nth(1).selectOption({label: 'H - Mixture enthalpy per mass dry air - [J/kg]'});
556 |
at /home/runner/work/EngineeringPaper.xyz/EngineeringPaper.xyz/tests/test_fluid_properties.spec.mjs:553:42
|
Run Playwright tests:
tests/test_matrix_functions.spec.mjs#L51
6) [firefox] › test_matrix_functions.spec.mjs:46:1 › Norm of row vector with numeric entries ─────
TimeoutError: page.textContent: Timeout 120000ms exceeded.
Call log:
- waiting for locator('#result-value-0')
49 | await page.waitForSelector('text=Updating...', {state: 'detached'});
50 |
> 51 | let content = await page.textContent(`#result-value-0`);
| ^
52 | expect(parseLatexFloat(content)).toBeCloseTo(sqrt(14), precision);
53 | });
54 |
at /home/runner/work/EngineeringPaper.xyz/EngineeringPaper.xyz/tests/test_matrix_functions.spec.mjs:51:28
|
Run Playwright tests:
tests/test_matrix_multiplication.spec.mjs#L45
7) [firefox] › test_matrix_multiplication.spec.mjs:40:1 › Square multiplication with matrix multiplication operator
TimeoutError: page.textContent: Timeout 120000ms exceeded.
Call log:
- waiting for locator('#result-value-0')
43 | await page.waitForSelector('text=Updating...', {state: 'detached'});
44 |
> 45 | let content = await page.textContent(`#result-value-0`);
| ^
46 | expect(content).toBe('\\begin{bmatrix} 5 \\cdot a + 7 \\cdot b & 6 \\cdot a + 8 \\cdot b \\\\ 5 \\cdot c + 7 \\cdot d & 6 \\cdot c + 8 \\cdot d \\end{bmatrix}');
47 |
48 | // add some numbers for variables that define first matrix
at /home/runner/work/EngineeringPaper.xyz/EngineeringPaper.xyz/tests/test_matrix_multiplication.spec.mjs:45:28
|
The following artifacts were uploaded using a version of actions/upload-artifact that is scheduled for deprecation: "screenshots", "test-results".
Please update your workflow to use v4 of the artifact actions.
Learn more: https://github.blog/changelog/2024-04-16-deprecation-notice-v3-of-the-artifact-actions/
|
Run Playwright tests
7 flaky
[chromium] › test_basic.spec.mjs:1798:1 › Test factorial error check for input with units ──────
[chromium] › test_plotting.spec.mjs:419:1 › test scatter plot x-y scalar vector mismatch ───────
[chromium] › test_system_solve.spec.mjs:764:1 › Test numerical solution variable rendering ─────
[firefox] › test_file_save_open.spec.mjs:138:1 › Test opening file with results and syntax error
[firefox] › test_fluid_properties.spec.mjs:541:1 › Test HAPropsSI fluid function in numerical solve
[firefox] › test_matrix_functions.spec.mjs:46:1 › Norm of row vector with numeric entries ──────
[firefox] › test_matrix_multiplication.spec.mjs:40:1 › Square multiplication with matrix multiplication operator
9 skipped
762 passed (21.1m)
|
Loading