Skip to content

Commit 88e0cef

Browse files
committed
ci: fixes
1 parent e0ad646 commit 88e0cef

File tree

2 files changed

+5
-306
lines changed

2 files changed

+5
-306
lines changed

pyproject.toml

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,12 @@ dependencies = ["typing-extensions>=4.0.0"]
99
[dependency-groups]
1010
dev = [
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"]
7875
pythonpath = ["src"]
7976
log_format = "%(asctime)s [%(levelname)-8s] [%(filename)s:%(lineno)s] %(message)s"
8077
log_date_format = "%H:%M:%S"
@@ -99,15 +96,12 @@ python_version = "3.13"
9996
warn_return_any = true
10097
warn_unused_configs = true
10198
exclude = [
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.*"]
111105
ignore_missing_imports = true
112106

113107
#

0 commit comments

Comments
 (0)