mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2024-11-10 04:06:11 +00:00
80 lines
2.4 KiB
YAML
80 lines
2.4 KiB
YAML
name: Test Jellyfin-Kodi
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
pull_request:
|
|
branches:
|
|
- master
|
|
|
|
env:
|
|
PR_TRIGGERED: ${{ github.event_name == 'pull_request' && github.repository == 'jellyfin/jellyfin-kodi' }}
|
|
|
|
jobs:
|
|
test:
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
py_version: ['2.7', '3.9', '3.11', '3.12']
|
|
os: [ubuntu-latest, windows-latest]
|
|
exclude:
|
|
- os: windows-latest
|
|
py_version: '2.7'
|
|
runs-on: ${{ matrix.os }}
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Set up Python ${{ matrix.py_version }}
|
|
if: matrix.py_version != '2.7'
|
|
uses: actions/setup-python@v4
|
|
with:
|
|
python-version: ${{ matrix.py_version }}
|
|
|
|
- name: Set up Python 2.7
|
|
if: matrix.py_version == '2.7'
|
|
run: |
|
|
sudo apt-get update
|
|
sudo apt-get install -y \
|
|
python2.7 python2.7-dev python2-pip-whl
|
|
sudo ln -sf python2.7 /usr/bin/python
|
|
export PYTHONPATH=`echo /usr/share/python-wheels/pip-*py2*.whl`
|
|
sudo --preserve-env=PYTHONPATH python -m pip install --upgrade pip setuptools wheel
|
|
sudo chown -R $USER /usr/local/lib/python2.7
|
|
|
|
- name: Install dependencies
|
|
run: |
|
|
python -m pip install --upgrade pip
|
|
python -m pip install -r requirements-dev.txt
|
|
|
|
- name: Lint with flake8
|
|
run: |
|
|
# stop the build if there are Python syntax errors or undefined names
|
|
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
|
|
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
|
|
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics --output-file=flake8.output
|
|
cat flake8.output
|
|
|
|
- name: Run tests and generate coverage
|
|
run: |
|
|
coverage run
|
|
|
|
- name: Generate coverage report
|
|
run: |
|
|
coverage xml
|
|
coverage report
|
|
|
|
- name: Upload coverage
|
|
uses: codecov/codecov-action@v3.1.4
|
|
if: ${{ matrix.py_version == '3.11' }}
|
|
|
|
- name: Publish Test Artifact
|
|
uses: actions/upload-artifact@v3
|
|
with:
|
|
retention-days: 14
|
|
name: ${{ matrix.py_version }}-test-results
|
|
path: |
|
|
flake8.output
|
|
test.xml
|
|
coverage.xml
|