mirror of
https://github.com/cyclotruc/gitingest.git
synced 2026-04-28 08:09:31 +00:00
* chore: add pre-commit config, type hints, badges, and lint codebase - Add .pre-commit-config.yaml and pyproject.toml for Black and isort - Add missing type hints throughout the code (Dict[...] for Python 3.8 compatibility) - Added badges and convert existing badges to use <a><img></a> format - Lint Markdown files - Lint Jinja templates with djlint * Resolve error and fix remaining type hint violations * Fix absolute imports and mock paths in test_clone.py to resolve test failures. * Replace deprecated 'dotenv' with 'python-dotenv' in requirements.txt to resolve installation errors.
8 lines
153 B
INI
8 lines
153 B
INI
[pytest]
|
|
pythonpath = src
|
|
testpaths = src/gitingest/tests
|
|
asyncio_mode = auto
|
|
|
|
python_files = test_*.py
|
|
python_classes = Test*
|
|
python_functions = test_*
|