mirror of
https://github.com/novoid/filetags.git
synced 2026-06-14 03:21:19 +00:00
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:
parent
7ca34e04a0
commit
e8aa40638c
3 changed files with 3 additions and 4 deletions
5
.github/workflows/ci_pytest.yml
vendored
5
.github/workflows/ci_pytest.yml
vendored
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
#!/bin/sh
|
||||
cd $(dirname $0)/..
|
||||
PYTHONPATH=".:" tests/unit_tests.py --verbose
|
||||
PYTHONPATH=".:" tests/test_unit_tests.py --verbose
|
||||
|
||||
#end
|
||||
|
|
|
|||
Loading…
Reference in a new issue