build-sd-images.yml: Install pv before downloading test image

This commit is contained in:
Tobias Knöppler 2025-10-19 00:01:00 +02:00
parent 8c807147ce
commit f271d70af2
2 changed files with 3 additions and 2 deletions

View File

@ -155,7 +155,8 @@ jobs:
run: | run: |
set -ex set -ex
mkdir -p output mkdir -p output
wget -nv "${{ inputs.test_image_url }}" | pv -i 3 > "output/${ARTIFACT_FILE?}" sudo apt-get install -y pv
wget -nv "${{ inputs.test_image_url }}" -O - | pv -n --bytes --rate --timer -i 3 > "output/${ARTIFACT_FILE?}"
- name: Prepare test - name: Prepare test
run: | run: |
set -x set -x

View File

@ -182,7 +182,7 @@ def test_nextcloud(IP: str, nc_port: str, driver: WebDriver, skip_release_check:
test.new("settings config") test.new("settings config")
wait = WebDriverWait(driver, 60 * wait_multiplier * 5) wait = WebDriverWait(driver, 60 * wait_multiplier * 5)
try: try:
wait.until(VisibilityOfElementLocatedByAnyLocator([(By.CSS_SELECTOR, "#security-warning.settings-section")]) wait.until(VisibilityOfElementLocatedByAnyLocator([(By.CSS_SELECTOR, "#security-warning.settings-section")]))
settings_config_check(wait, test) settings_config_check(wait, test)
except TimeoutException: except TimeoutException:
settings_config_check_pre32(wait, test) settings_config_check_pre32(wait, test)