You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We run two containers in one pod. One container runs a bash script that checks the existence of the report.html then shuts the pods down after uploading the html file to azure blob storage. The second container runs the pytest command.
Due to the change in report.html being created at the start of the pytest run now, it no longer waits for the test on the second container to finish. It uploads the unfinished version of the report instead.
As this is a breaking change, could you please make a note of this in the release notes or maybe fix this by making a temporary file in /tmp then move it to the report directory at the end of the test
Part of the script:
while [ ! -f /tmp/report.html ]; do
sleep 2
done
The text was updated successfully, but these errors were encountered:
@BeyondEvil are you sure it was fixed correctly? I updated to 4.1.1 and report file is still generated at the beginning but isn't updated until the end
We run two containers in one pod. One container runs a bash script that checks the existence of the report.html then shuts the pods down after uploading the html file to azure blob storage. The second container runs the pytest command.
Due to the change in report.html being created at the start of the pytest run now, it no longer waits for the test on the second container to finish. It uploads the unfinished version of the report instead.
As this is a breaking change, could you please make a note of this in the release notes or maybe fix this by making a temporary file in
/tmp
then move it to the report directory at the end of the testPart of the script:
The text was updated successfully, but these errors were encountered: