f string dobule quotes to single quotes to make it work on python 3.11 #7
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: test | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- master | |
pull_request: | |
jobs: | |
pytest: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: 3.12 | |
- run: pip install uv | |
- run: uv pip install --no-cache --system -r requirements-dev.txt | |
# TODO: figure out why `pytest` doesn't discover tests in `faster_whisper_server` directory by itself | |
- run: pytest faster_whisper_server/* tests |