We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f559e97 commit 1215217Copy full SHA for 1215217
1 file changed
streamz/tests/test_kafka.py
@@ -18,7 +18,8 @@
18
from distributed.utils_test import gen_cluster # flake8: noqa
19
20
KAFKA_FILE = 'kafka_2.11-1.0.0'
21
-LAUNCH_KAFKA = os.environ.get('STREAMZ_LAUNCH_KAFKA', '') == 'true'
+if os.environ.get('STREAMZ_LAUNCH_KAFKA', '') != 'true':
22
+ pytest.skip("Not doing flaky kafka tests")
23
ck = pytest.importorskip('confluent_kafka')
24
25
0 commit comments