Skip to content

Commit

Permalink
YAML multiline string
Browse files Browse the repository at this point in the history
  • Loading branch information
kenodegard committed Sep 30, 2023
1 parent 44f7cb9 commit fdc248e
Showing 1 changed file with 42 additions and 42 deletions.
84 changes: 42 additions & 42 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -116,28 +116,28 @@ jobs:
run-post: false # skip post cleanup

- name: Setup Environment
run: |
conda install --quiet --yes \
--file tests/requirements.txt \
--file tests/requirements-${{ runner.os }}.txt \
run: >-
conda install --quiet --yes
--file tests/requirements.txt
--file tests/requirements-${{ runner.os }}.txt
${{ env.CONDA_CHANNEL_LABEL }}::conda
pip install -e .
&& pip install -e .
- name: Show Info
run: |
conda info --verbose
conda list --show-channel-urls
- name: Run Tests
run: |
pytest \
--alluredir="${{ env.ALLURE_DIR }}" \
--basetemp="${{ runner.temp }}/${{ matrix.test-type }}" \
--cov=conda_build \
--durations-path="tools/durations/${{ runner.os }}.json" \
--group=${{ matrix.test-group }} \
--splits=${{ env.PYTEST_SPLITS }} \
-n "${{ env.PYTEST_NUMPROCESSES }}" \
run: >-
pytest
--alluredir="${{ env.ALLURE_DIR }}"
--basetemp="${{ runner.temp }}/${{ matrix.test-type }}"
--cov=conda_build
--durations-path="tools/durations/${{ runner.os }}.json"
--group=${{ matrix.test-group }}
--splits=${{ env.PYTEST_SPLITS }}
-n "${{ env.PYTEST_NUMPROCESSES }}"
-m "${{ env.PYTEST_MARKER }}"
- name: Upload Coverage
Expand Down Expand Up @@ -220,29 +220,29 @@ 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 `
--file tests\requirements-${{ runner.os }}.txt `
&& conda install --quiet --yes
--file tests\requirements.txt
--file tests\requirements-${{ runner.os }}.txt
${{ env.CONDA_CHANNEL_LABEL }}::conda
pip install -e .
&& pip install -e .
- name: Show Info
run: |
conda info --verbose
conda list --show-channel-urls
- name: Run Tests
run: |
pytest `
--alluredir="${{ env.ALLURE_DIR }}" `
--basetemp="${{ runner.temp }}\${{ matrix.test-type }}" `
--cov=conda_build `
--durations-path="tools\durations\${{ runner.os }}.json" `
--group=${{ matrix.test-group }} `
--splits=${{ env.PYTEST_SPLITS }} `
-m "${{ env.PYTEST_MARKER }}" `
run: >-
pytest
--alluredir="${{ env.ALLURE_DIR }}"
--basetemp="${{ runner.temp }}\${{ matrix.test-type }}"
--cov=conda_build
--durations-path="tools\durations\${{ runner.os }}.json"
--group=${{ matrix.test-group }}
--splits=${{ env.PYTEST_SPLITS }}
-m "${{ env.PYTEST_MARKER }}"
-n "${{ env.PYTEST_NUMPROCESSES }}"
- name: Upload Coverage
Expand Down Expand Up @@ -332,29 +332,29 @@ 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 \
--file tests/requirements-${{ runner.os }}.txt \
&& conda install --quiet --yes
--file tests/requirements.txt
--file tests/requirements-${{ runner.os }}.txt
${{ env.CONDA_CHANNEL_LABEL }}::conda
pip install -e .
&& pip install -e .
- name: Show Info
run: |
conda info --verbose
conda list --show-channel-urls
- name: Run Tests
run: |
pytest \
--alluredir="${{ env.ALLURE_DIR }}" \
--basetemp="${{ runner.temp }}/${{ matrix.test-type }}" \
--cov=conda_build \
--durations-path=tools/durations/${{ runner.os }}.json \
--group=${{ matrix.test-group }} \
--splits=${{ env.PYTEST_SPLITS }} \
-m "${{ env.PYTEST_MARKER }}" \
run: >-
pytest
--alluredir="${{ env.ALLURE_DIR }}"
--basetemp="${{ runner.temp }}/${{ matrix.test-type }}"
--cov=conda_build
--durations-path=tools/durations/${{ runner.os }}.json
--group=${{ matrix.test-group }}
--splits=${{ env.PYTEST_SPLITS }}
-m "${{ env.PYTEST_MARKER }}"
-n "${{ env.PYTEST_NUMPROCESSES }}"
- name: Upload Coverage
Expand Down

0 comments on commit fdc248e

Please sign in to comment.