Skip to content

use v2 models and remove usage of v1 models, and fix API (#15) #105

use v2 models and remove usage of v1 models, and fix API (#15)

use v2 models and remove usage of v1 models, and fix API (#15) #105

Workflow file for this run

name: Tests
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ '3.10', '3.11' ]
steps:
- uses: actions/checkout@v2
- name: Update
run: sudo apt update
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install packages
run: sudo apt install -y libmpv1
- uses: abatilo/[email protected]
with:
poetry-version: "1.4.2"
- name: Install dependecies
run: poetry install
- name: Run tests
run: poetry run pytest -v --ignore-glob='*_api.py'