increase selenium timeout/attempts

This commit is contained in:
Andrew Dolgov 2025-05-22 11:23:01 +03:00
parent 2294090778
commit b447cda515
No known key found for this signature in database
GPG Key ID: 1A56B4FA25D4AF2A

View File

@ -139,10 +139,10 @@ selenium:
script: script:
- export K8S_NAMESPACE=$(kubectl get pods -o=custom-columns=NS:.metadata.namespace | tail -1) - 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... echo attempt $i...
python3 tests/integration/selenium_test.py && break python3 tests/integration/selenium_test.py && break
sleep 3 sleep 10
done done
needs: needs:
- job: phpunit-integration - job: phpunit-integration