2023-01-12 01:04:47 +00:00
|
|
|
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
|
2023-05-04 20:44:24 +00:00
|
|
|
python-version: ['3.8', '3.9', '3.10', '3.11']
|
2023-01-12 01:04:47 +00:00
|
|
|
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
|
2023-05-04 20:44:24 +00:00
|
|
|
python-version: ['3.8', '3.9', '3.10', '3.11']
|
2023-01-12 01:04:47 +00:00
|
|
|
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
|
2023-05-04 20:44:24 +00:00
|
|
|
python-version: ['3.8', '3.9', '3.10', '3.11']
|
2023-01-12 01:04:47 +00:00
|
|
|
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
|