14
0

- Add patch remove-mock.patch:

* Remove use of mock.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-kafka-python?expand=0&rev=23
This commit is contained in:
2022-10-11 06:50:34 +00:00
committed by Git OBS Bridge
parent b939117e3e
commit 8e4d278cb4
3 changed files with 25 additions and 2 deletions

16
remove-mock.patch Normal file
View File

@@ -0,0 +1,16 @@
Index: kafka-python-2.0.2/test/test_consumer_integration.py
===================================================================
--- kafka-python-2.0.2.orig/test/test_consumer_integration.py
+++ kafka-python-2.0.2/test/test_consumer_integration.py
@@ -1,7 +1,10 @@
import logging
import time
-from mock import patch
+try:
+ from unittest.mock import patch
+except ImportError:
+ from mock import patch
import pytest
from kafka.vendor.six.moves import range