mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 01:25:21 +00:00
Fix integration tests path
This commit is contained in:
parent
5b06e30ea2
commit
db83d82f5a
@ -25,6 +25,11 @@ def get_images_with_versions(reports_path, required_image, pull=True):
|
||||
images_path = os.path.join(root, 'changed_images.json')
|
||||
break
|
||||
|
||||
if not images_path:
|
||||
logging.info("Images file not found")
|
||||
else:
|
||||
logging.info("Images file path %s", images_path)
|
||||
|
||||
if images_path is not None and os.path.exists(images_path):
|
||||
logging.info("Images file exists")
|
||||
with open(images_path, 'r', encoding='utf-8') as images_fd:
|
||||
|
@ -120,7 +120,7 @@ if __name__ == "__main__":
|
||||
logging.info("Check is already finished according to github status, exiting")
|
||||
sys.exit(0)
|
||||
|
||||
images = get_images_with_versions(temp_path, IMAGES)
|
||||
images = get_images_with_versions(reports_path, IMAGES)
|
||||
images_with_versions = {i.name: i.version for i in images}
|
||||
result_path = os.path.join(temp_path, "output_dir")
|
||||
if not os.path.exists(result_path):
|
||||
|
Loading…
Reference in New Issue
Block a user