Skip to content

more alignment bug fixes #148

more alignment bug fixes

more alignment bug fixes #148

Workflow file for this run

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'