You might run into these errors in the ALOpsAppTest step:
##[warning]No tests where executed.
##[error]*** Running Tests failed.
This is by design:
your tests are failing because you are running the test-step but are not running any tests: the system expects (at least one) test(s), but there are none.
Intention:
You need to make sure to run tests, if no tests are run, you want to know!
Solution:
you can disable the step (you don't want to run tests anyway)
Attention
You might run into these errors in the
ALOpsAppTest
step:This is by design: your tests are failing because you are running the test-step but are not running any tests: the system expects (at least one) test(s), but there are none.
Intention: You need to make sure to run tests, if no tests are run, you want to know!
Solution: