ci: git mv unit_tests.py tests_unit_tests.py

For an easier launch of the unit tests by `pytest`, file
`unit_tests.py` was renamed and thus now is discovered automatically
from the root of the project.

Signed-off-by: Norwid Behrnd <nbehrnd@yahoo.com>
This commit is contained in:
Norwid Behrnd 2026-03-02 13:07:38 +01:00
parent 7ca34e04a0
commit e8aa40638c
No known key found for this signature in database
3 changed files with 3 additions and 4 deletions

View file

@ -44,6 +44,5 @@ jobs:
- name: verbose pytest
run: |
cd tests
python -m pytest unit_tests.py
python -m pytest unit_tests.py -v
pytest
pytest -v

View file

@ -1,5 +1,5 @@
#!/bin/sh
cd $(dirname $0)/..
PYTHONPATH=".:" tests/unit_tests.py --verbose
PYTHONPATH=".:" tests/test_unit_tests.py --verbose
#end