File tree Expand file tree Collapse file tree 1 file changed +8
-10
lines changed
Expand file tree Collapse file tree 1 file changed +8
-10
lines changed Original file line number Diff line number Diff 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')
You can’t perform that action at this time.
0 commit comments