From 13293d950d59416a559fd478a530a66465522f2b Mon Sep 17 00:00:00 2001 From: Ken Odegard Date: Sat, 30 Sep 2023 10:55:11 -0500 Subject: [PATCH] Remove YAML multiline chomping --- .github/workflows/tests.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 0a3e24dd73..4dbbf9b965 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -116,7 +116,7 @@ jobs: run-post: false # skip post cleanup - name: Setup Environment - run: >- + run: > conda install --quiet --yes --file tests/requirements.txt --file tests/requirements-${{ runner.os }}.txt @@ -129,7 +129,7 @@ jobs: conda list --show-channel-urls - name: Run Tests - run: >- + run: > pytest --alluredir="${{ env.ALLURE_DIR }}" --basetemp="${{ runner.temp }}/${{ matrix.test-type }}" @@ -220,7 +220,7 @@ jobs: run-post: false # skip post cleanup - name: Setup Environment - run: >- + run: > choco install visualstudio2017-workload-vctools && conda install --quiet --yes --file tests\requirements.txt @@ -234,7 +234,7 @@ jobs: conda list --show-channel-urls - name: Run Tests - run: >- + run: > pytest --alluredir="${{ env.ALLURE_DIR }}" --basetemp="${{ runner.temp }}\${{ matrix.test-type }}" @@ -332,7 +332,7 @@ jobs: run-post: false # skip post cleanup - name: Setup Environment - run: >- + run: > sudo xcode-select --switch /Applications/Xcode_11.7.app && conda install --quiet --yes --file tests/requirements.txt @@ -346,7 +346,7 @@ jobs: conda list --show-channel-urls - name: Run Tests - run: >- + run: > pytest --alluredir="${{ env.ALLURE_DIR }}" --basetemp="${{ runner.temp }}/${{ matrix.test-type }}"