Fix renaming test files on stage deploys (#5275)

This commit is contained in:
Anna Scholtz 2024-03-25 12:14:46 -07:00 коммит произвёл GitHub
Родитель 3779a9cdf7
Коммит 4bffcd2652
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: B5690EEEBB952194
1 изменённых файлов: 1 добавлений и 3 удалений

Просмотреть файл

@ -160,9 +160,7 @@ def deploy(
shutil.rmtree(test_path)
# rename test files
for test_file_path in map(
Path, glob(f"{test_destination}/**/*", recursive=True)
):
for test_file_path in map(Path, glob(f"{TEST_DIR}/**/*", recursive=True)):
for test_dep_file in artifact_files:
test_project = test_dep_file.parent.parent.parent.name
test_dataset = test_dep_file.parent.parent.name