Skip to content

Updated: xbmcaddon with new (Nexus) settings calls. #85

Updated: xbmcaddon with new (Nexus) settings calls.

Updated: xbmcaddon with new (Nexus) settings calls. #85

Workflow file for this run

name: unit-tests
on:
push:
branches:
- '**'
pull_request:
branches:
- master
jobs:
check-addon:
name: Run unit tests
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ ubuntu-latest ]
python-version: [ 3.7, 3.8, 3.9 ]
include:
# Kodi Matrix on Windows uses a bundled Python 3.8, but we test 3.9 also to be sure.
- os: windows-latest
python-version: 3.8
- os: windows-latest
python-version: 3.9
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Run unit tests
env:
KODI_HOME: ${{ github.workspace }}/tests/home
KODI_INTERACTIVE: 0
run: pytest -v --color=yes