-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
104 additions
and
54 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[tool.poetry] | ||
name = "ydb-dbapi" | ||
version = "0.1.0" | ||
version = "0.0.1" | ||
description = "" | ||
authors = ["Oleg Ovcharuk <[email protected]>"] | ||
readme = "README.md" | ||
|
@@ -58,6 +58,8 @@ ignore = [ | |
# Ignores below could be deleted | ||
"EM101", # Allow to use string literals in exceptions | ||
"TRY003", # Allow specifying long messages outside the exception class | ||
"SLF001", # Allow access private member, | ||
"PGH003", # Allow not to specify rule codes | ||
] | ||
select = ["ALL"] | ||
|
||
|
@@ -72,7 +74,8 @@ dummy-variable-rgx = "^(_+|(_+[a-zA-Z0-9_]*[a-zA-Z0-9]+?))$" | |
force-single-line = true | ||
|
||
[tool.ruff.lint.per-file-ignores] | ||
"**/test_*.py" = ["S", "SLF", "ANN201", "ARG", "PLR2004"] | ||
"**/test_*.py" = ["S", "SLF", "ANN201", "ARG", "PLR2004", "PT012"] | ||
"conftest.py" = ["ARG001"] | ||
"__init__.py" = ["F401", "F403"] | ||
|
||
[tool.pytest.ini_options] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
from .connection import Connection | ||
from .connection import IsolationLevel | ||
from .connection import connect | ||
from .connections import Connection | ||
from .connections import IsolationLevel | ||
from .connections import connect | ||
from .cursors import Cursor | ||
from .errors import * |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.