From ae4aa0ba45da53e3632de27b06f84cbea0f4beaa Mon Sep 17 00:00:00 2001 From: Harpo Harbert Date: Thu, 19 Sep 2024 15:42:40 -0700 Subject: [PATCH] Adds pdm scripts --- pyproject.toml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 872f67a..c8c169c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -57,6 +57,12 @@ dev = [ "pre-commit~=3.5", ] +[tool.pdm.scripts] +test = 'pytest --vcr-record=none' +docs = 'mkdocs serve' +lint = 'ruff check . --fix' +format = 'black -S .' + [tool.pytest.ini_options] testpaths = ['tests'] markers = ['no_ci: marks tests to skip on CI']