Skip to content

Commit 1b1c9cc

Browse files
dbg
1 parent e9e9c7d commit 1b1c9cc

File tree

1 file changed

+8
-10
lines changed

1 file changed

+8
-10
lines changed

.github/workflows/main.yml

Lines changed: 8 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -101,20 +101,18 @@ jobs:
101101
102102
- name: Run Tests for Linux (os= 'Linux')
103103
if: runner.os == 'Linux'
104-
run: >-
105-
pixi run
106-
--environment ${{matrix.env}} test-all
107-
--splits 10
108-
--group ${{ matrix.test_group }}
104+
run: |
105+
pixi run --environment ${{matrix.env}} test-all \
106+
--splits 10 \
107+
--group ${{ matrix.test_group }} \
109108
--splitting-algorithm=least_duration
110109
111110
- name: Run Tests for Windows (os='Windows')
112111
if: runner.os == 'Windows'
113-
run: >-
114-
pixi run
115-
--environment ${{matrix.env}} test-simple
116-
--splits 10
117-
--group ${{ matrix.test_group }}
112+
run: |
113+
pixi run --environment ${{matrix.env}} test-simple \
114+
--splits 10 \
115+
--group ${{ matrix.test_group }} \
118116
--splitting-algorithm=least_duration
119117
120118
- name: Run Report Generation Tests (os='Linux')

0 commit comments

Comments
 (0)