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), )