Skip to content

Commit

Permalink
E2Eテストエラー抑制
Browse files Browse the repository at this point in the history
- session.gc_probability=0 に設定
  • Loading branch information
nanasess committed Jun 12, 2020
1 parent 965e04c commit 3ed0c8b
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: CI/CD for EC-CUBE
on:
push:
branches:
- 4.0
- '*'
tags:
- '*'
paths:
Expand Down Expand Up @@ -196,7 +196,7 @@ jobs:
DATABASE_SERVER_VERSION: ${{ matrix.database_server_version }}
MAILER_URL: 'smtp://localhost:1025'
ECCUBE_PACKAGE_API_URL: 'http://localhost:8080'
run: php -S localhost:8000 &
run: php -dsession.gc_probability=0 -S localhost:8000 &

- name: Codeception
env:
Expand Down Expand Up @@ -320,7 +320,7 @@ jobs:
DATABASE_SERVER_VERSION: ${{ matrix.database_server_version }}
MAILER_URL: 'smtp://localhost:1025'
ECCUBE_PACKAGE_API_URL: 'http://localhost:8080'
run: php -S localhost:8000 &
run: php -dsession.gc_probability=0 -S localhost:8000 &

## ${PWD}/repos does not exist so service cannot be started
- name: Run package-api
Expand Down Expand Up @@ -449,7 +449,7 @@ jobs:
DATABASE_SERVER_VERSION: ${{ matrix.database_server_version }}
MAILER_URL: 'smtp://localhost:1025'
ECCUBE_PACKAGE_API_URL: 'http://localhost:8080'
run: php -S localhost:8000 &
run: php -dsession.gc_probability=0 -S localhost:8000 &

## ${PWD}/repos does not exist so service cannot be started
- name: Run package-api
Expand Down Expand Up @@ -578,7 +578,7 @@ jobs:
DATABASE_SERVER_VERSION: ${{ matrix.database_server_version }}
MAILER_URL: 'smtp://localhost:1025'
ECCUBE_PACKAGE_API_URL: 'http://localhost:8080'
run: php -S localhost:8000 &
run: php -dsession.gc_probability=0 -S localhost:8000 &

## ${PWD}/repos does not exist so service cannot be started
- name: Run package-api
Expand Down Expand Up @@ -709,7 +709,7 @@ jobs:
DATABASE_SERVER_VERSION: ${{ matrix.database_server_version }}
MAILER_URL: 'smtp://localhost:1025'
ECCUBE_PACKAGE_API_URL: 'http://localhost:8080'
run: php -S localhost:8000 &
run: php -dsession.gc_probability=0 -S localhost:8000 &

## ${PWD}/repos does not exist so service cannot be started
- name: Run package-api
Expand Down

0 comments on commit 3ed0c8b

Please sign in to comment.