Skip to content

Commit

Permalink
increase e2e test cores
Browse files Browse the repository at this point in the history
  • Loading branch information
Carsten König committed Jul 23, 2024
1 parent bbfcc62 commit af531ce
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ build_docker_ci:
docker build -f docker/Dockerfile_ci -t elasticvue-ci .

ci: build_docker_ci
cat /proc/cpuinfo
docker run --rm elasticvue-ci yarn lint
docker run --rm elasticvue-ci yarn tsc
docker run --rm elasticvue-ci yarn test:unit
Expand Down
2 changes: 1 addition & 1 deletion playwright.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export default defineConfig({
/* Retry on CI only */
retries: process.env.CI ? 2 : 0,
/* Opt out of parallel tests on CI. */
workers: process.env.CI ? 1 : 16,
workers: process.env.CI ? 2 : 16,
/* Reporter to use. See https://playwright.dev/docs/test-reporters */
reporter: [['html', { open: 'never' }]],
/* Shared settings for all the projects below. See https://playwright.dev/docs/api/class-testoptions. */
Expand Down

0 comments on commit af531ce

Please sign in to comment.