I run the test on bamboo with selenium technology and the test tab does not show the test failure, how I can view the test failure?
Asked
Active
Viewed 1,750 times
1

Brett Holmes
- 397
- 5
- 20
-
Bamboo 5.15.5 version build 5151 – Juan David Vanegas Romero Apr 19 '18 at 15:12
2 Answers
1
To see test results (including info which test caused fail) you need to add proper parser task to your job. There are many available parser tasks i.e. JUnit Parser, NUnit Parser, TestNG Parser.
The important thing is to move parser task under Final tasks bar (parser will execute even if previous task fail).

Łukasz
- 2,131
- 1
- 13
- 28
0
You don't have any test failures. In fact, no tests were running in this build as you can see in line
0 test in total
You job may have failed for one of 2 reasons:
- Actual failure of the job. Check detailed log on Logs tab to see if this is the case
- It may have also failed because you configured it to fail when there was no tests (and in this case there was no tests indeed) as we see. The corresponding configuration would look like this:

timbre timbre
- 12,648
- 10
- 46
- 77