diff options
author | 2024-08-16 19:03:48 +0100 | |
---|---|---|
committer | 2024-08-16 19:05:30 +0100 | |
commit | 3dfabc121e00bec538ab2b7d6d1d258bd6b6b5a4 (patch) | |
tree | e173cbff10eaa6617533ca42676003e63a94a2c7 /pyproject.toml | |
parent | Add volume for thallium-backend (diff) |
Add a database backend and migrations
Diffstat (limited to 'pyproject.toml')
-rw-r--r-- | pyproject.toml | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/pyproject.toml b/pyproject.toml index 454bd19..7381adf 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -54,13 +54,14 @@ ignore = [ ] [tool.ruff.lint.isort] -known-first-party = ["tests", "src"] +known-first-party = ["tests", "src", "migrations"] order-by-type = false case-sensitive = true combine-as-imports = true [tool.ruff.lint.per-file-ignores] -"*/tests/**" = ["D103", "S101"] +"thallium-backend/tests/**" = ["D103", "S101"] +"thallium-backend/migrations/*" = ["N999"] [tool.pytest.ini_options] # addopts = "--ignore=examples" |