mirror of
https://github.com/SickGear/SickGear.git
synced 2024-11-15 17:35:04 +00:00
c75ef36cfe
Fix double use of var `result` overwrites the return value and causes an error in _parse_custom_exceptions. Change remove Python 3.7 from CI
72 lines
2.1 KiB
YAML
72 lines
2.1 KiB
YAML
name: Python Unit Tests
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
- dev
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
- dev
|
|
jobs:
|
|
windows:
|
|
runs-on: '${{ matrix.os }}'
|
|
strategy:
|
|
matrix:
|
|
os:
|
|
- windows-latest
|
|
python-version: ['3.8', '3.9', '3.10', '3.11']
|
|
steps:
|
|
- name: 'Set up Python ${{ matrix.python-version }}'
|
|
uses: actions/setup-python@v4
|
|
with:
|
|
python-version: '${{ matrix.python-version }}'
|
|
- uses: actions/checkout@v3
|
|
- run: pip install responses
|
|
- run: pip install -r requirements.txt
|
|
- run: pip install coveralls
|
|
- name: 'Unit tests...'
|
|
working-directory: ./tests
|
|
run: coverage run --source=.. --omit=../lib/* ./all_tests.py
|
|
linux:
|
|
runs-on: '${{ matrix.os }}'
|
|
strategy:
|
|
matrix:
|
|
os:
|
|
- ubuntu-latest
|
|
python-version: ['3.8', '3.9', '3.10', '3.11']
|
|
steps:
|
|
- name: 'Set up Python ${{ matrix.python-version }}'
|
|
uses: actions/setup-python@v4
|
|
with:
|
|
python-version: '${{ matrix.python-version }}'
|
|
- uses: actions/checkout@v3
|
|
- run: export BOTO_CONFIG=/dev/null
|
|
- run: 'export PYTHONPATH=$PYTHONPATH:$(pwd)'
|
|
- run: pip install responses
|
|
- run: pip install -r requirements.txt
|
|
- run: pip install coveralls
|
|
- name: 'Unit tests...'
|
|
working-directory: ./tests
|
|
run: coverage run --source=.. --omit=../lib/* ./all_tests.py
|
|
macos:
|
|
runs-on: '${{ matrix.os }}'
|
|
strategy:
|
|
matrix:
|
|
os:
|
|
- macos-latest
|
|
python-version: ['3.8', '3.9', '3.10', '3.11']
|
|
steps:
|
|
- name: 'Set up Python ${{ matrix.python-version }}'
|
|
uses: actions/setup-python@v4
|
|
with:
|
|
python-version: '${{ matrix.python-version }}'
|
|
- uses: actions/checkout@v3
|
|
- run: export BOTO_CONFIG=/dev/null
|
|
- run: 'export PYTHONPATH=$PYTHONPATH:$(pwd)'
|
|
- run: pip install responses
|
|
- run: pip install -r requirements.txt
|
|
- run: pip install coveralls
|
|
- name: 'Unit tests...'
|
|
working-directory: ./tests
|
|
run: coverage run --source=.. --omit=../lib/* ./all_tests.py
|