From e0f111c9ef0efb5ac35ceedec7a3c5794f283b3e Mon Sep 17 00:00:00 2001 From: Yuri Astrakhan Date: Tue, 5 May 2020 12:08:08 -0400 Subject: [PATCH] Disable TTY in test-perf (sets proper width) (#849) No TTY forces test-perf to use the default screen width for the output --- .github/workflows/tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 968bd8ea..6225e86d 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -182,7 +182,7 @@ jobs: # Use latest tools version because these specific tests do not yet exist in the 4.1 tools version # Custom TOOLS_VERSION can be removed once OMT master is migrated to the next tools version - TOOLS_VERSION=latest profile test-perf docker-compose run --rm openmaptiles-tools \ + TOOLS_VERSION=latest profile test-perf docker-compose run --rm -T openmaptiles-tools \ test-perf openmaptiles.yaml $TEST_PERF_PARAMS \ --record /tileset/results.json mv results.json ../perf_cache @@ -218,7 +218,7 @@ jobs: # Use latest tools version because these specific tests do not yet exist in the 4.1 tools version # Custom TOOLS_VERSION can be removed once OMT master is migrated to the next tools version cp ../perf_cache/results.json . - OUTPUT="$(TOOLS_VERSION=latest profile test-perf docker-compose run --rm openmaptiles-tools \ + OUTPUT="$(TOOLS_VERSION=latest profile test-perf docker-compose run --rm -T openmaptiles-tools \ test-perf openmaptiles.yaml $TEST_PERF_PARAMS \ --compare /tileset/results.json --record /tileset/pr-results.json)" rm results.json