Skip to content

Commit

Permalink
e2e-test は毎回走らせる
Browse files Browse the repository at this point in the history
  • Loading branch information
voluntas committed Sep 16, 2024
1 parent f37ba07 commit cebeee2
Showing 1 changed file with 15 additions and 17 deletions.
32 changes: 15 additions & 17 deletions .github/workflows/e2e-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@ on:
push:
paths-ignore:
- "**.md"
pull_request:
types: [closed]
schedule:
# UTC の 01:00 は JST だと 10:00 。
# 1-5 で 月曜日から金曜日
Expand All @@ -18,11 +16,11 @@ env:

jobs:
e2e_test_ubuntu:
if: >-
${{
contains(github.event.head_commit.message, '[e2e]') ||
github.event_name == 'schedule'
}}
# if: >-
# ${{
# contains(github.event.head_commit.message, '[e2e]') ||
# github.event_name == 'schedule'
# }}
strategy:
matrix:
python_version: ["3.10", "3.11", "3.12"]
Expand Down Expand Up @@ -51,11 +49,11 @@ jobs:
- run: uv run pytest tests/test_vad.py -s

e2e_test_macos:
if: >-
${{
contains(github.event.head_commit.message, '[e2e]') ||
github.event_name == 'schedule'
}}
# if: >-
# ${{
# contains(github.event.head_commit.message, '[e2e]') ||
# github.event_name == 'schedule'
# }}
strategy:
matrix:
python_version: ["3.10", "3.11", "3.12"]
Expand All @@ -82,11 +80,11 @@ jobs:
- run: uv run pytest tests/test_vad.py -s

e2e_test_windows:
if: >-
${{
contains(github.event.head_commit.message, '[e2e]') ||
github.event_name == 'schedule'
}}
# if: >-
# ${{
# contains(github.event.head_commit.message, '[e2e]') ||
# github.event_name == 'schedule'
# }}
strategy:
matrix:
python_version: ["3.10", "3.11", "3.12"]
Expand Down

0 comments on commit cebeee2

Please sign in to comment.