Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update test.yml #53

Merged
merged 1 commit into from
Dec 26, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,18 +10,18 @@ jobs:
tests:
name: Test voicevox-client
runs-on: ubuntu-latest
services:
voicevox:
image: voicevox/voicevox_engine:cpu-ubuntu20.04-latest
ports:
- 50021:50021
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.10'
- name: Install depend
run: pip3 install -U .[tests]
- name: Run voicevox-engine
run: |
docker pull voicevox/voicevox_engine:cpu-ubuntu20.04-latest
docker run -d --rm -p '127.0.0.1:50021:50021' voicevox/voicevox_engine:cpu-ubuntu20.04-latest
sleep 20
run: python -m pip install -U .[tests]
- name: Run test
run: pytest
Loading