Take a look at this - kindly written by Richard:
https://github.com/nhibernate/nhibernate-core/blob/master/lib/teamcity/readme.txt
On 19/01/2012 8:09 AM, "Oskar Berggren" <[email protected]> wrote:
> Todays success is to accidentally make 12 existing and unrelated tests
> pass on Firebird by the following one-liner. :) (The tests are using
> identity generator which falls back to sequence.)
>
> public override string GetSelectSequenceNextValString(string sequenceName)
> {
> return string.Format("gen_id({0}, 1 )", sequenceName);
> }
>
>
> Why is it that several of the build configurations on the build server
> show green, despite many failing tests? How does it decide which tests
> can fail without failing the entire build?
>
> /Oskar
>