Skip to content

Skip Fun-ASR-Nano integration tests (requires newer funasr version) #16

Skip Fun-ASR-Nano integration tests (requires newer funasr version)

Skip Fun-ASR-Nano integration tests (requires newer funasr version) #16

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install package and test dependencies
run: |
pip install -e .
pip install pytest
- name: Run tests
run: python -m pytest tests/ -v -m "not integration"