Skip to content

Commit 5483b11

Browse files
committed
clean up and make test large once again
1 parent 0e065d9 commit 5483b11

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,6 @@ def __init__(self, args, enable_spilling):
102102
"dq.EnableSpillingNodes=All",
103103
] if self.enable_spilling else [])
104104
self.tpc_dir = pathlib.Path(f"{self.args.downloaders_dir}/tpc/{self.args.variant}/{self.args.datasize}")
105-
print(self.tpc_dir, self.tpc_dir.exists(), file=stderr)
106105
if self.args.clean_old or not self.tpc_dir.exists():
107106
self.prepare_tpc_dir()
108107
if not pathlib.Path("./tpc").exists():

ydb/library/benchmarks/runner/tpc_tests.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -70,13 +70,11 @@ def test_tpc():
7070
is_ci = os.environ.get("PUBLIC_DIR") is not None
7171

7272
runner = Runner()
73-
runner.wrapped_run("h", 1, 1, r"q1\.sql")
73+
runner.wrapped_run("h", 1, 1, None)
7474
result_path = runner.results_path.resolve()
7575
print("Results path: ", result_path, file=sys.stderr)
7676

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

8080
upload(result_path, s3_folder)
81-
82-
exit(1)

ydb/library/benchmarks/runner/ya.make

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

3-
SIZE(MEDIUM)
3+
SIZE(LARGE)
4+
5+
TAG(
6+
ya:fat
7+
)
48

59
TEST_SRCS(
610
tpc_tests.py

0 commit comments

Comments
 (0)