pytest-kafka-broker 0.3.0__tar.gz → 0.3.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {pytest_kafka_broker-0.3.0 → pytest_kafka_broker-0.3.1}/.gitignore +1 -0
- {pytest_kafka_broker-0.3.0 → pytest_kafka_broker-0.3.1}/PKG-INFO +1 -1
- {pytest_kafka_broker-0.3.0 → pytest_kafka_broker-0.3.1}/src/pytest_kafka_broker/__init__.py +4 -1
- {pytest_kafka_broker-0.3.0 → pytest_kafka_broker-0.3.1}/src/pytest_kafka_broker.egg-info/PKG-INFO +1 -1
- {pytest_kafka_broker-0.3.0 → pytest_kafka_broker-0.3.1}/.gitlab-ci.yml +0 -0
- {pytest_kafka_broker-0.3.0 → pytest_kafka_broker-0.3.1}/.pre-commit-config.yaml +0 -0
- {pytest_kafka_broker-0.3.0 → pytest_kafka_broker-0.3.1}/.readthedocs.yml +0 -0
- {pytest_kafka_broker-0.3.0 → pytest_kafka_broker-0.3.1}/README.md +0 -0
- {pytest_kafka_broker-0.3.0 → pytest_kafka_broker-0.3.1}/docs/Makefile +0 -0
- {pytest_kafka_broker-0.3.0 → pytest_kafka_broker-0.3.1}/docs/conf.py +0 -0
- {pytest_kafka_broker-0.3.0 → pytest_kafka_broker-0.3.1}/docs/index.rst +0 -0
- {pytest_kafka_broker-0.3.0 → pytest_kafka_broker-0.3.1}/docs/make.bat +0 -0
- {pytest_kafka_broker-0.3.0 → pytest_kafka_broker-0.3.1}/pyproject.toml +0 -0
- {pytest_kafka_broker-0.3.0 → pytest_kafka_broker-0.3.1}/setup.cfg +0 -0
- {pytest_kafka_broker-0.3.0 → pytest_kafka_broker-0.3.1}/src/pytest_kafka_broker/py.typed +0 -0
- {pytest_kafka_broker-0.3.0 → pytest_kafka_broker-0.3.1}/src/pytest_kafka_broker.egg-info/SOURCES.txt +0 -0
- {pytest_kafka_broker-0.3.0 → pytest_kafka_broker-0.3.1}/src/pytest_kafka_broker.egg-info/dependency_links.txt +0 -0
- {pytest_kafka_broker-0.3.0 → pytest_kafka_broker-0.3.1}/src/pytest_kafka_broker.egg-info/entry_points.txt +0 -0
- {pytest_kafka_broker-0.3.0 → pytest_kafka_broker-0.3.1}/src/pytest_kafka_broker.egg-info/requires.txt +0 -0
- {pytest_kafka_broker-0.3.0 → pytest_kafka_broker-0.3.1}/src/pytest_kafka_broker.egg-info/top_level.txt +0 -0
- {pytest_kafka_broker-0.3.0 → pytest_kafka_broker-0.3.1}/tests/__init__.py +0 -0
- {pytest_kafka_broker-0.3.0 → pytest_kafka_broker-0.3.1}/tests/test_kafka.py +0 -0
|
@@ -186,5 +186,8 @@ async def kafka_broker(
|
|
|
186
186
|
yield KafkaBrokerContext(f"127.0.0.1:{plaintext_port}")
|
|
187
187
|
finally:
|
|
188
188
|
with Status("Stopping Kafka broker"):
|
|
189
|
-
|
|
189
|
+
try:
|
|
190
|
+
process.terminate()
|
|
191
|
+
except ProcessLookupError:
|
|
192
|
+
pass # Process has already terminated
|
|
190
193
|
await exited
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{pytest_kafka_broker-0.3.0 → pytest_kafka_broker-0.3.1}/src/pytest_kafka_broker.egg-info/SOURCES.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|