From df631b84f23f5432ae01b53de85b57d46368d22b Mon Sep 17 00:00:00 2001 From: Ben Ramsey Date: Sat, 7 Aug 2021 17:07:57 -0500 Subject: [PATCH] test: attempt to set the columns for the functional tests --- .github/workflows/continuous-integration.yml | 4 +++- tests/functional-tests.sh | 3 ++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/continuous-integration.yml b/.github/workflows/continuous-integration.yml index 1f3a8f9..83815de 100644 --- a/.github/workflows/continuous-integration.yml +++ b/.github/workflows/continuous-integration.yml @@ -171,4 +171,6 @@ jobs: uses: "ramsey/composer-install@v1" - name: "Run functional tests" - run: "composer test-functional" + run: | + stty columns 120 + composer test-functional diff --git a/tests/functional-tests.sh b/tests/functional-tests.sh index 7df1880..fe00f33 100644 --- a/tests/functional-tests.sh +++ b/tests/functional-tests.sh @@ -1,6 +1,7 @@ #!/usr/bin/env bash -stty cols 120 +stty columns 120 +export COLUMNS=120 __DIR__="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"