IMPROVEMENT: Suppress 6 pylint warnings #21
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Python unit-tests | |
on: [push] | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
# os: [ubuntu-latest, macos-latest, windows-latest] | |
# python-version: ["3.9", "3.10", "3.11", "3.12", "pypy3.9", "pypy3.10"] | |
os: [ubuntu-latest] | |
python-version: ["3.10"] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip setuptools wheel | |
python -m pip install -U pymavlink | |
pip install build | |
pip install -U . | |
- name: Set PYTHONPATH | |
run: | | |
echo "$PYTHONPATH" | |
echo "PYTHONPATH=/home/runner/work/MethodicConfigurator/MethodicConfigurator/MethodicConfigurator" >> $GITHUB_ENV | |
echo "$PYTHONPATH" | |
- name: Test with unittest | |
run: | | |
python -m unittest discover -s ./unittests -p '*_unittest.py' | |
- name: Unittest coverage report | |
run: | | |
cd unittests | |
python -m coverage run -m unittest annotate_params_unittest.py | |
python -m coverage run -m unittest ardupilot_methodic_configurator_unittest.py | |
python -m coverage run -m unittest backend_filesystem_unittest.py | |
python -m coverage run -m unittest extract_params_defaults_unittest.py | |
python -m coverage run -m unittest frontend_tkinter_unittest.py | |
python -m coverage run -m unittest param_pid_adjustment_update_unittest.py | |
python -m coverage html |