Skip to content

Commit abd2743

Browse files
committed
Tweaked tool options
1 parent 7920525 commit abd2743

File tree

4 files changed

+2
-4
lines changed

4 files changed

+2
-4
lines changed

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,7 @@ extend-select = [
7171

7272
[tool.ruff.lint.isort]
7373
known-first-party = ["asphalt.kafka"]
74+
known-third-party = ["asphalt.core"]
7475

7576
[tool.mypy]
7677
python_version = "3.9"
@@ -79,7 +80,7 @@ explicit_package_bases = true
7980
mypy_path = ["src", "tests", "examples"]
8081

8182
[tool.pytest.ini_options]
82-
addopts = "-rsx --tb=short"
83+
addopts = ["-rsfE", "--tb=short"]
8384

8485
[tool.coverage.run]
8586
source = ["asphalt.kafka"]

src/asphalt/kafka/_admin.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
from typing import Any
77

88
from aiokafka.admin import AIOKafkaAdminClient
9-
109
from asphalt.core import Component, add_resource, get_resource
1110

1211

src/asphalt/kafka/_consumer.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
from typing import Any
99

1010
from aiokafka import AIOKafkaConsumer
11-
1211
from asphalt.core import Component, add_resource, context_teardown, get_resource
1312

1413

src/asphalt/kafka/_producer.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
from typing import Any
77

88
from aiokafka import AIOKafkaProducer
9-
109
from asphalt.core import Component, add_resource, get_resource
1110

1211

0 commit comments

Comments
 (0)