From 13ee4f7f115ae638fa618d39f122b13953596fdc Mon Sep 17 00:00:00 2001 From: Alexander Polyakov Date: Mon, 26 Jan 2026 15:36:51 +0300 Subject: [PATCH] [k2] enable confdata integration tests --- tests/kphp_ci_pipeline_runner.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tests/kphp_ci_pipeline_runner.py b/tests/kphp_ci_pipeline_runner.py index eedd31aa64..682dd9c082 100755 --- a/tests/kphp_ci_pipeline_runner.py +++ b/tests/kphp_ci_pipeline_runner.py @@ -482,7 +482,10 @@ def _calculate_pytest_jobs_count(default_percent: int = 95) -> int: kphp_polyfills_repo=kphp_polyfills_repo, cxx_name=args.cxx_name, k2_bin=args.k2_bin, - tests_dir=os.path.join(args.kphp_tests_repo, "python/tests/k2_rpc_server/"), + tests_dir=" ".join([ + os.path.join(args.kphp_tests_repo, "python/tests/k2_rpc_server/"), + os.path.join(args.kphp_tests_repo, "python/tests/confdata/"), + ]), ), skip=not args.k2_bin or (args.steps and "k2-integration-tests" not in args.steps), )