Skip to content

Commit 38c7e02

Browse files
committed
Do not ignore the exit code of previously executed commands
1 parent 11f157c commit 38c7e02

1 file changed

Lines changed: 2 additions & 4 deletions

File tree

.azure-pipelines/unix-build.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,15 +34,13 @@ steps:
3434
3535
- script: |
3636
source activate xtensor-io
37-
make -j2 test_xtensor_io_lib
38-
make -j2 test_xtensor_io_ho
37+
make -j2 test_xtensor_io_lib test_xtensor_io_ho
3938
displayName: Build xtensor-io
4039
workingDirectory: $(Build.BinariesDirectory)/build
4140
4241
- script: |
4342
source activate xtensor-io
44-
./test_xtensor_io_lib
45-
./test_xtensor_io_ho
43+
./test_xtensor_io_lib && ./test_xtensor_io_ho
4644
displayName: Test xtensor-io
4745
workingDirectory: $(Build.BinariesDirectory)/build/test
4846

0 commit comments

Comments
 (0)