We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 30bb84b commit 22fd64cCopy full SHA for 22fd64c
tests/ducktape/run_ducktape_test.py
@@ -6,14 +6,9 @@
6
import os
7
import subprocess
8
import tempfile
9
+import time
10
-try:
11
- import ducktape
12
-except ImportError as e:
13
- print("ERROR: ducktape is not installed or not importable.")
14
- print(f"Import error: {e}")
15
- print("Install it with: pip install ducktape")
16
- sys.exit(1)
+import ducktape
17
18
19
def create_cluster_config():
@@ -27,7 +22,6 @@ def create_cluster_config():
27
22
28
23
def create_test_config():
29
24
"""Create test configuration file"""
30
- import time
31
25
timestamp = int(time.time())
32
26
config = {
33
"ducktape_dir": os.path.dirname(os.path.abspath(__file__)),
0 commit comments