Skip to content

Commit de1a4fb

Browse files
committed
Append results to zip file
This may greatly increase the archive file size which we need to simplify our matrix. But at least we should get some more insights into failing tests.
1 parent f17f8f0 commit de1a4fb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

atest/run.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -259,7 +259,7 @@ def create_zip():
259259
zip_name = f"rf-{robot_version}-python-{python_version}.zip"
260260
zip_path = os.path.join(ZIP_DIR, zip_name)
261261
print("Zip created in: %s" % zip_path)
262-
zip_file = zipfile.ZipFile(zip_path, "w")
262+
zip_file = zipfile.ZipFile(zip_path, "a")
263263
for root, dirs, files in os.walk(RESULTS_DIR):
264264
for file in files:
265265
file_path = os.path.join(root, file)

0 commit comments

Comments
 (0)