acc: Prevent regex in test.toml from consuming too much (#2417)

The original regex can consume both lines and sometimes it does.
This commit is contained in:
Denis Bilenko 2025-03-03 13:55:52 +01:00 committed by GitHub
parent 25a7e0a72b
commit 2c5b61538d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 3 additions and 3 deletions

View File

@ -2,8 +2,8 @@
>>> errcode [CLI] bundle deploy
Building whl1...
Building whl2...
Uploading [package name]
Uploading [package name]
Uploading [package name]...
Uploading [package name]...
Uploading bundle files to /Workspace/Users/[USERNAME]/.bundle/unique_name_libraries/default/files...
Deploying resources...
Updating deployment state...

View File

@ -2,5 +2,5 @@ RecordRequests = false
# The order in which files are uploaded can be different, so we just replace the name
[[Repls]]
Old="Uploading .*-0.0.1-py3-none-any.whl..."
Old="Uploading (my_package|my_other_package)-0.0.1-py3-none-any.whl"
New="Uploading [package name]"