File tree Expand file tree Collapse file tree 2 files changed +5
-306
lines changed
Expand file tree Collapse file tree 2 files changed +5
-306
lines changed Original file line number Diff line number Diff line change @@ -9,15 +9,12 @@ dependencies = ["typing-extensions>=4.0.0"]
99[dependency-groups ]
1010dev = [
1111 " bandit>=1.8.5" ,
12- " build>=0.10.0" ,
1312 " mypy-extensions>=1.1.0" ,
1413 " mypy>=1.0.0" ,
1514 " pytest-asyncio>=0.21.0" ,
1615 " pytest-coverage>=0.0" ,
1716 " pytest>=7.0.0" ,
1817 " python-semantic-release>=9.0.0" ,
19- " ruff>=0.1.0" ,
20- " twine>=4.0.0" ,
2118]
2219
2320[tool .pyright ]
@@ -74,7 +71,7 @@ addopts = [
7471 " --log-cli-level=INFO" ,
7572 " --import-mode=importlib" ,
7673]
77- testpaths = [" tests" ]
74+ testpaths = [" tests/unit " ]
7875pythonpath = [" src" ]
7976log_format = " %(asctime)s [%(levelname)-8s] [%(filename)s:%(lineno)s] %(message)s"
8077log_date_format = " %H:%M:%S"
@@ -99,15 +96,12 @@ python_version = "3.13"
9996warn_return_any = true
10097warn_unused_configs = true
10198exclude = [
102- ' ^file1\.py$' , # TOML literal string (single-quotes, no escaping necessary)
103- " ^file2\\ .py$" , # TOML basic string (double-quotes, backslash and other characters need escaping)
99+ ' ^file1\.py$' , # TOML literal string (single-quotes, no escaping necessary)
100+ " ^file2\\ .py$" , # TOML basic string (double-quotes, backslash and other characters need escaping)
104101]
105102
106103[[tool .mypy .overrides ]]
107- module = [
108- " smpp.client.*" ,
109- " smpp.server.*" ,
110- ]
104+ module = [" smpp.client.*" , " smpp.server.*" ]
111105ignore_missing_imports = true
112106
113107#
You can’t perform that action at this time.
0 commit comments