python testing example
https://docs.python.org/3/library/unittest.html
python3.12 -m unittest discover -v -s tests
PYTHONPATH=. python3.12 tests/suites.py
python3.12 -m unittest discover -v -s tests
coverage run --source src -m unitest
coverage report
coverage html
# this comand not run if not change folder tests to other unique name
coverage run --source ./src_tests -m unittest