I am having problems with Teamcity
, where it is proceeding to run build steps even if the previous ones were unsuccessful.
The final step of my Build co
TeamCity build failure does not mean that it will stop the build and it will publish the artifacts if your build is providing the the build output files as required by TeamCity. It will only update the build status properly.
But, you can very well stop the build process by modification to your build script to stop the build on test case failure. If you are using MSBuild, then ContinueOnError="false"
will do that.