From cac9875b978996f36d7e7aaa6e36e39651947b8e Mon Sep 17 00:00:00 2001 From: Torsten Dittmann Date: Wed, 28 Apr 2021 12:20:32 +0200 Subject: [PATCH] tests: clean up travis file --- .travis.yml | 2 +- tests/e2e/Client.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 930f9c0fb..89dee0e5b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -26,9 +26,9 @@ before_install: - docker buildx create --use - chmod -R u+x ./.travis-ci - export COMPOSE_INTERACTIVE_NO_CLI=1 +- ./.travis-ci/prepare.sh install: -- ./.travis-ci/prepare.sh - docker-compose up -d - sleep 10 diff --git a/tests/e2e/Client.php b/tests/e2e/Client.php index 0eb87afbb..82fd642a0 100644 --- a/tests/e2e/Client.php +++ b/tests/e2e/Client.php @@ -156,7 +156,7 @@ class Client */ public function call(string $method, string $path = '', array $headers = [], array $params = []) { - usleep(128); + usleep(50000); $headers = array_merge($this->headers, $headers); $ch = curl_init($this->endpoint . $path . (($method == self::METHOD_GET && !empty($params)) ? '?' . http_build_query($params) : '')); $responseHeaders = [];