-
Notifications
You must be signed in to change notification settings - Fork 14
49 lines (42 loc) · 1.73 KB
/
unit-tests.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
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"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
# You can test your matrix by printing the current Python version
- name: Display Python version
run: python -c "import sys; print(sys.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