No description
Find a file
autocommit 978c54ee64
Some checks failed
Publish / publish (push) Failing after 0s
deps-upgrade(config): ⬆️ Update config dependencies to latest stable versions
Co-Authored-By: Lilith Autocommit <noreply@atlilith.com>
2026-04-12 00:21:55 -07:00
.forgejo/workflows chore: migrate to DRY reusable workflow 2026-01-21 12:50:20 -08:00
src/lilith_pytest_config chore: initial commit - lilith-pytest-config 2026-01-21 12:38:10 -08:00
pyproject.toml deps-upgrade(config): ⬆️ Update config dependencies to latest stable versions 2026-04-12 00:21:55 -07:00
README.md chore: initial commit - lilith-pytest-config 2026-01-21 12:38:10 -08:00

@lilith/pytest-config

Shared Pytest testing configuration for Lilith Python projects.

Installation

pip install lilith-pytest-config

Usage

Copy pytest.ini to your project root:

from lilith_pytest_config import get_config_path

# Get path to copy from
print(get_config_path())

Or reference settings in pyproject.toml:

[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
# ... copy other settings