mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-24 16:42:05 +00:00
no-random-settings for bugfix validate
This commit is contained in:
parent
fcb7e9ed36
commit
000a31df3b
@ -198,6 +198,9 @@ if __name__ == "__main__":
|
||||
run_log_path = os.path.join(result_path, "runlog.log")
|
||||
|
||||
additional_envs = get_additional_envs(check_name, run_by_hash_num, run_by_hash_total)
|
||||
if validate_bugix_check:
|
||||
additional_envs.append('GLOBAL_TAGS=no-random-settings')
|
||||
|
||||
run_command = get_run_command(packages_path, repo_tests_path, result_path, server_log_path, kill_timeout, additional_envs, docker_image, flaky_check, tests_to_run)
|
||||
logging.info("Going to run func tests: %s", run_command)
|
||||
|
||||
|
@ -464,6 +464,9 @@ class TestCase:
|
||||
self.case: str = case # case file name
|
||||
self.tags: Set[str] = suite.all_tags[case] if case in suite.all_tags else set()
|
||||
|
||||
for tag in os.getenv("GLOBAL_TAGS", "").split(","):
|
||||
self.tags.add(tag.strip())
|
||||
|
||||
self.case_file: str = os.path.join(suite.suite_path, case)
|
||||
(self.name, self.ext) = os.path.splitext(case)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user