From 91ce5ab28d2cffdf20119b064239a1ed5445973f Mon Sep 17 00:00:00 2001 From: Ale Mercado Date: Tue, 12 May 2026 15:28:46 -0400 Subject: [PATCH] docs: add pyproject.toml for ruff and pytest config --- pyproject.toml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 pyproject.toml diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..b800495 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,13 @@ +[tool.ruff] +line-length = 125 +exclude = [".venv", "venv"] + +[tool.ruff.format] +quote-style = "double" + +[tool.pytest.ini_options] +testpaths = ["tests"] +log_file = "logs/pytest.log" +log_file_level = "DEBUG" +log_format = "%(asctime)s %(levelname)s %(message)s" +log_date_format = "%Y-%m-%d %H:%M:%S"