diff options
| author | Andrew Dolgov <fox@fakecake.org> | 2025-05-22 11:23:01 +0300 |
|---|---|---|
| committer | Andrew Dolgov <fox@fakecake.org> | 2025-05-22 11:23:01 +0300 |
| commit | b447cda5157ad97f7e2073c7545aefe424bf5d68 (patch) | |
| tree | 479403dffd7557ed13049cb276d26707f49c0749 | |
| parent | 22940907786dd3ee4f505ed1355967771ed215cf (diff) | |
increase selenium timeout/attempts
| -rw-r--r-- | .gitlab-ci.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 1e180ddf8..a73b4a7dc 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -139,10 +139,10 @@ selenium: script: - export K8S_NAMESPACE=$(kubectl get pods -o=custom-columns=NS:.metadata.namespace | tail -1) - | - for i in `seq 1 3`; do + for i in `seq 1 10`; do echo attempt $i... python3 tests/integration/selenium_test.py && break - sleep 3 + sleep 10 done needs: - job: phpunit-integration |