Skip to content

Commit 75b8c12

Browse files
committed
final fixes and make test large and fat
1 parent 3f537c4 commit 75b8c12

File tree

3 files changed

+7
-8
lines changed

3 files changed

+7
-8
lines changed

ydb/library/benchmarks/runner/run_tests/run_tests.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,8 @@ def main():
146146
print("No spilling...", file=stderr)
147147
results.append(Runner(args, False).run())
148148

149-
result_compare(args, results)
149+
if not args.is_test:
150+
result_compare(args, results)
150151

151152

152153
if __name__ == "__main__":

ydb/library/benchmarks/runner/tpc_tests.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ def test_tpc():
7171
runner = Runner()
7272
runner.wrapped_run("h", 1, 1, None)
7373
result_path = runner.results_path.resolve()
74-
print("Results path:", result_path, file=sys.stderr)
74+
print("Results path: ", result_path, file=sys.stderr)
7575

7676
if is_ci:
7777
s3_folder = pathlib.Path(os.environ["PUBLIC_DIR"]).resolve()

ydb/library/benchmarks/runner/ya.make

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,10 @@
11
PY3TEST()
22

3-
SIZE(MEDIUM)
3+
SIZE(LARGE)
44

5-
# SIZE(LARGE)
6-
7-
# TAG(
8-
# ya:fat
9-
# )
5+
TAG(
6+
ya:fat
7+
)
108

119
TEST_SRCS(
1210
tpc_tests.py

0 commit comments

Comments
 (0)