Skip to content

Commit

Permalink
Fix commant new line wrap
Browse files Browse the repository at this point in the history
  • Loading branch information
yatarkan committed May 28, 2024
1 parent 9a388a1 commit 69ffa1f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build_treon_reusable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,7 @@ jobs:
if: runner.os == 'Linux' && inputs.python == '3.8'
shell: bash
run: |
python .ci/validate_notebooks.py
python .ci/validate_notebooks.py \
${{ inputs.test_only_changed && '--test_list test_notebooks.txt' || '' }} \
--ignore_list .ci/ignore_treon_linux.txt .ci/ignore_treon_py38.txt ${{ env.TEST_DEVICE == 'gpu' && '.ci/heavy_ubuntu_gpu.txt' || '' }} \
--report_dir test_report/${{ env.TEST_REPORT_DIR }} \
Expand All @@ -283,7 +283,7 @@ jobs:
if: runner.os == 'MacOS' && inputs.python != '3.8'
shell: bash
run: |
python .ci/validate_notebooks.py
python .ci/validate_notebooks.py \
${{ inputs.test_only_changed && '--test_list test_notebooks.txt' || '' }} \
--ignore_list .ci/ignore_treon_mac.txt \
--report_dir test_report/${{ env.TEST_REPORT_DIR }} \
Expand All @@ -292,7 +292,7 @@ jobs:
if: runner.os == 'MacOS' && inputs.python == '3.8'
shell: bash
run: |
python .ci/validate_notebooks.py
python .ci/validate_notebooks.py \
${{ inputs.test_only_changed && '--test_list test_notebooks.txt' || '' }} \
--ignore_list .ci/ignore_treon_mac.txt .ci/ignore_treon_py38.txt \
--report_dir test_report/${{ env.TEST_REPORT_DIR }} \
Expand Down

0 comments on commit 69ffa1f

Please sign in to comment.