initial release
Some checks failed
CI / test (3.13) (push) Failing after 22s

This commit is contained in:
Alexander Kalinovsky
2025-08-25 19:45:21 +03:00
parent cc067ec78d
commit 2954913673
36 changed files with 2890 additions and 11 deletions

30
tests/pytest.ini Normal file
View File

@@ -0,0 +1,30 @@
; SPDX-FileCopyrightText: 2025 Alexander Kalinovsky <a@k8y.ru>
;
; SPDX-License-Identifier: MIT
[tool:pytest]
testpaths = tests
python_files = test_*.py
python_classes = Test*
python_functions = test_*
addopts =
-v
--tb=short
--strict-markers
--disable-warnings
--cov=src/quickbot_cli
--cov-report=term-missing
--cov-report=html
--cov-report=xml
--cov-fail-under=95
--cov-config=tests/pytest.ini
markers =
unit: Unit tests
integration: Integration tests
slow: Slow running tests
cli: CLI specific tests
[coverage:report]
exclude_lines =
^if __name__ == .__main__.:$
^\s*main\(\)\s*$