This commit is contained in:
Waylon Walker 2023-06-09 16:04:58 -05:00
parent 1a0bf1adb9
commit c3db85a209
No known key found for this signature in database
GPG key ID: 66E2BF2B4190EFE4
21 changed files with 647 additions and 658 deletions

View file

@ -77,14 +77,17 @@ dependencies = [
[tool.hatch.envs.default.scripts]
test = "coverage run -m pytest"
cov = "coverage-rich report"
test-cov = ['test', 'cov']
cov-erase = "coverage erase"
lint = "ruff learn_sql_model"
format = "black learn_sql_model"
format-check = "black --check learn_sql_model"
fix_ruff = "ruff --fix learn_sql_model"
fix = ['format', 'fix_ruff']
build-docs = "markata build"
lint-test = [
"lint",
"format-check",
"cov-erase",
"test",
"cov",
]