Skip to content

Commit af531ce

Browse files
author
Carsten König
committed
increase e2e test cores
1 parent bbfcc62 commit af531ce

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ build_docker_ci:
44
docker build -f docker/Dockerfile_ci -t elasticvue-ci .
55

66
ci: build_docker_ci
7+
cat /proc/cpuinfo
78
docker run --rm elasticvue-ci yarn lint
89
docker run --rm elasticvue-ci yarn tsc
910
docker run --rm elasticvue-ci yarn test:unit

playwright.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ export default defineConfig({
1818
/* Retry on CI only */
1919
retries: process.env.CI ? 2 : 0,
2020
/* Opt out of parallel tests on CI. */
21-
workers: process.env.CI ? 1 : 16,
21+
workers: process.env.CI ? 2 : 16,
2222
/* Reporter to use. See https://playwright.dev/docs/test-reporters */
2323
reporter: [['html', { open: 'never' }]],
2424
/* Shared settings for all the projects below. See https://playwright.dev/docs/api/class-testoptions. */

0 commit comments

Comments
 (0)