more patches #158
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: Run Tests | |
on: [push] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: ["3.9", "3.10", "3.11"] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Display Python version | |
run: python -c "import sys; print(sys.version)" | |
- name: Install setup dependencies | |
run: python -m pip install --upgrade pip setuptools wheel | |
- name: Install Batchalign | |
run: python -m pip install -e ".[dev]" | |
- name: Run tests | |
run: python -m pytest batchalign --disable-pytest-warnings -k 'not test_whisper_fa_pipeline' | |