Reputation: 273
How does TeamCity verify if the code sent by the developer is a pre-tested commit?
Upvotes: 0
Views: 436
Reputation: 4658
Usually it makes sense when build and test process don't take a lot of time, so developer can receive results in a few seconds just to his IDE (I tried it with PyCharm and it was great - it notifies you in a few seconds about build results).
So there is no magic with this verification, it's pretty clear.
Upvotes: 0
Reputation: 1942
The pre-tested commit feature works through plugins that integrate with your IDE.
If you use Eclipse: http://confluence.jetbrains.net/display/TCD5/Eclipse+Plugin
If you use IntelliJ: http://confluence.jetbrains.net/display/TCD5/IntelliJ+Platform+Plugin
I you use Visual Studio: http://confluence.jetbrains.net/display/TCD5/Visual+Studio+Plugin
The help documentation on that site should guide you through installing the plugin and setting up the pre-tested commits. I haven't done it in a while, but as far as I remember it's a painless process.
Upvotes: 3