Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Functional tests - Increase timeout for docker puppeteer #19025

Merged
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion tests/puppeteer/docker-compose.tests.yml
Expand Up @@ -13,7 +13,7 @@ services:
HEADLESS: "true"
depends_on:
- "prestashop"
command: ["/tmp/wait-for-it.sh", "--timeout=720", "--strict", "prestashop-web:80", "--", "/bin/bash"]
command: ["/tmp/wait-for-it.sh", "--timeout=1800", "--strict", "prestashop-web:80", "--", "/bin/bash"]
tty: true
volumes:
- .docker:/tmp/docker
Expand Down
2 changes: 1 addition & 1 deletion tests/puppeteer/scripts/run-nightly-tests.sh
Expand Up @@ -44,7 +44,7 @@ for command in "sanity-tests" "functional-tests"; do

echo "Wait for docker-compose..."
sleep 10
docker-compose -f docker-compose.nightly.yml -f docker-compose.tests.yml exec -T tests /tmp/wait-for-it.sh --timeout=720 --strict prestashop-web:80
docker-compose -f docker-compose.nightly.yml -f docker-compose.tests.yml exec -T tests /tmp/wait-for-it.sh --timeout=1800 --strict prestashop-web:80

# Running command
echo "Run ${command}"
Expand Down