Skip to content

Commit 3dad2b1

Browse files
Fix test issues: order of arguments in prepare_memtier_benchmark_parameters and escape sequence warning
1 parent 212f690 commit 3dad2b1

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

redis_benchmarks_specification/__self_contained_coordinator__/clients.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ def prepare_memtier_benchmark_parameters(
1010
"--json-out-file",
1111
local_benchmark_output_filename,
1212
full_benchmark_path,
13+
"--json-out-file",
14+
local_benchmark_output_filename,
1315
"--port",
1416
"{}".format(port),
1517
"--server",

utils/tests/test_runner.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,7 @@ def test_extract_testsuites():
265265
"--test-suites-folder",
266266
"./utils/tests/test_data/test-suites",
267267
"--tests-regex",
268-
".*\.yml",
268+
r".*\.yml",
269269
]
270270
)
271271
tests = extract_testsuites(args)

0 commit comments

Comments
 (0)