This commit is contained in:
Waylon Walker 2023-05-23 08:55:35 -05:00
parent daf81343bf
commit a2b33b25f8
No known key found for this signature in database
GPG key ID: 66E2BF2B4190EFE4
11 changed files with 479 additions and 55 deletions

View file

@ -57,17 +57,20 @@ path = "learn_sql_model/__about__.py"
dependencies = [
"black",
"ipython",
"coverage[toml]",
"coverage-rich",
"markata",
"mypy",
"pyflyby",
"pytest",
"pytest-cov",
"pytest-mock",
"ruff",
"alembic",
]
[tool.hatch.envs.default.scripts]
test = "coverage run -m pytest"
cov = "coverage-rich"
cov = "coverage-rich report"
test-cov = ['test', 'cov']
lint = "ruff learn_sql_model"
format = "black learn_sql_model"
format-check = "black --check learn_sql_model"
@ -84,6 +87,7 @@ test-lint = "lint-test"
python = ["37", "38", "39", "310", "311"]
[tool.coverage.run]
source=["learn_sql_model"]
branch = true
parallel = true
omit = [