All testcase should run in gitlab instead 1st one failed

was setting up a gitlab environment. After each push 1 am running 5 test cases. But if the any of the test cases is falling other testcase are skipped. I want to run all the cases. Because they are independent to each other.

gitlab-ci.yml

stages:

build
unit_test_1
unit_test_2
unit_test_3

job1: stage: build

script:

  • bash build.sh

job2:

stage: unit_test_1

script:

  • bash ./unit_test_1.sh

job3:

stage: unit_test_2

script:

  • bash ./unit_test_2.sh

job4:

stage: unit_test_3

script:

  • bash ./unit_test_3.sh

If uint_test_1.sh is failing. Other tests are skipped.

Can Anyone have some comment?