Branch: refs/heads/master
Home: https://github.com/jenkinsci/ci-game-plugin
Commit: 081f250e4d42cf5f2e6194f57f6e9d0cbf47d9c2
https://github.com/jenkinsci/ci-game-plugin/commit/081f250e4d42cf5f2e6194f57f6e9d0cbf47d9c2
Author: lkamal <[email protected]>
Date: 2013-10-20 (Sun, 20 Oct 2013)
Changed paths:
M src/main/java/hudson/plugins/cigame/rules/build/BuildResultRule.java
A
src/main/java/hudson/plugins/cigame/rules/unittesting/AbstractFailedTestsRule.java
A
src/main/java/hudson/plugins/cigame/rules/unittesting/AbstractPassedTestsRule.java
A
src/main/java/hudson/plugins/cigame/rules/unittesting/AbstractSkippedTestsRule.java
M
src/main/java/hudson/plugins/cigame/rules/unittesting/AbstractUnitTestsRule.java
A
src/main/java/hudson/plugins/cigame/rules/unittesting/DecreasingFailedTestsRule.java
A
src/main/java/hudson/plugins/cigame/rules/unittesting/DecreasingPassedTestsRule.java
A
src/main/java/hudson/plugins/cigame/rules/unittesting/DecreasingSkippedTestsRule.java
M
src/main/java/hudson/plugins/cigame/rules/unittesting/IncreasingFailedTestsRule.java
M
src/main/java/hudson/plugins/cigame/rules/unittesting/IncreasingPassedTestsRule.java
A
src/main/java/hudson/plugins/cigame/rules/unittesting/IncreasingSkippedTestsRule.java
R
src/main/java/hudson/plugins/cigame/rules/unittesting/RemovedFailedTestsRule.java
R
src/main/java/hudson/plugins/cigame/rules/unittesting/RemovedPassedTestsRule.java
M
src/main/java/hudson/plugins/cigame/rules/unittesting/UnitTestingRuleSet.java
M
src/main/resources/hudson/plugins/cigame/rules/unittesting/Messages.properties
M
src/test/java/hudson/plugins/cigame/rules/unittesting/IncreasingFailedTestsRuleTest.java
M
src/test/java/hudson/plugins/cigame/rules/unittesting/IncreasingPassedTestsRuleTest.java
M
src/test/java/hudson/plugins/cigame/rules/unittesting/MavenMultiModuleUnitTestsTest.java
Log Message:
-----------
[FIXED JENKINS-6446] Modified the scoring mechanism as follows to avoid the
inconsistency in granting marks.
Passing test
added: +1
removed: -1
Failing test
added: -1
removed: +1
Skipped test (no marks given or reduced)
added: 0
removed: 0
Following is the details of how all scenarios are handled.
Passing Tests
Passing test added = +1
[Increases passing count = +1]
Passing test removed = -1
[Decreases passing count = -1]
Passing an already failing test = +2
[Decreases failing count = +1]
[Increases passing count = +1]
Passing an already skipped test = +1
[Decreases skipped count = 0]
[Increases passing count = +1]
Failing tests
Failing test added = -1
[Increases failing count = -1]
Failing test removed = +1
[Decreases failing count = +1]
Failing an already passing test = -2
[Decreases passing count = -1]
[Increases failing count = -1]
Failing an already skipped test = -1
[Decreases skipped count = 0]
[Increases failing count = -1]
Skipped tests
Skipped test added = 0
[Increases skipped count = 0]
Skipped test removed = 0
[Decreases skipped count = 0]
Skipped an already passing test = -1
[Decreases passing count = -1]
[Increases skipped count = 0]
Skipped an already failing test = +1
[Decreases failing count = +1]
[Increases skipped count = 0]
Commit: e796a32831959f0e22490a5718eba71b11611e3f
https://github.com/jenkinsci/ci-game-plugin/commit/e796a32831959f0e22490a5718eba71b11611e3f
Author: lkamal <[email protected]>
Date: 2013-10-20 (Sun, 20 Oct 2013)
Changed paths:
M src/main/java/hudson/plugins/cigame/rules/build/BuildResultRule.java
Log Message:
-----------
[FIXED JENKINS-6446] Removing a TODO added for future references
Commit: 626af1ccd3ce3eee662f9a567b114c4cc095fdd3
https://github.com/jenkinsci/ci-game-plugin/commit/626af1ccd3ce3eee662f9a567b114c4cc095fdd3
Author: lkamal <[email protected]>
Date: 2013-10-24 (Thu, 24 Oct 2013)
Changed paths:
M pom.xml
M src/main/java/hudson/plugins/cigame/GameDescriptor.java
M
src/main/java/hudson/plugins/cigame/rules/unittesting/DecreasingFailedTestsRule.java
M
src/main/java/hudson/plugins/cigame/rules/unittesting/DecreasingPassedTestsRule.java
M
src/main/java/hudson/plugins/cigame/rules/unittesting/DecreasingSkippedTestsRule.java
M
src/main/java/hudson/plugins/cigame/rules/unittesting/IncreasingFailedTestsRule.java
M
src/main/java/hudson/plugins/cigame/rules/unittesting/IncreasingPassedTestsRule.java
M
src/main/java/hudson/plugins/cigame/rules/unittesting/IncreasingSkippedTestsRule.java
M src/main/resources/hudson/plugins/cigame/GamePublisher/global.jelly
M src/main/resources/hudson/plugins/cigame/GamePublisher/global.properties
A
src/main/resources/hudson/plugins/cigame/GamePublisher/help-failedTestDecreasingPoints.html
A
src/main/resources/hudson/plugins/cigame/GamePublisher/help-failedTestIncreasingPoints.html
A
src/main/resources/hudson/plugins/cigame/GamePublisher/help-passedTestDecreasingPoints.html
A
src/main/resources/hudson/plugins/cigame/GamePublisher/help-passedTestIncreasingPoints.html
A
src/main/resources/hudson/plugins/cigame/GamePublisher/help-skippedTestDecreasingPoints.html
A
src/main/resources/hudson/plugins/cigame/GamePublisher/help-skippedTestIncreasingPoints.html
M
src/test/java/hudson/plugins/cigame/rules/unittesting/IncreasingFailedTestsRuleTest.java
M
src/test/java/hudson/plugins/cigame/rules/unittesting/IncreasingPassedTestsRuleTest.java
M
src/test/java/hudson/plugins/cigame/rules/unittesting/MavenMultiModuleUnitTestsTest.java
Log Message:
-----------
[FIXED JENKINS-6446] Added global configurations for all the six types of
unittest changes (increase or descrease of passed, failed and skipped tests).
The configuration is available under 'Continuous integration game - Unit Tests'
section in advanced mode. Default values are set to 1 for increasing passing
tests, -1 for increasing failed tests and 0 for all other 4 scenarios
Commit: 57b43778dfffa7b1dec25dcb6123b40c2993e195
https://github.com/jenkinsci/ci-game-plugin/commit/57b43778dfffa7b1dec25dcb6123b40c2993e195
Author: lkamal <[email protected]>
Date: 2013-10-29 (Tue, 29 Oct 2013)
Changed paths:
M src/main/resources/hudson/plugins/cigame/GamePublisher/global.jelly
Log Message:
-----------
[FIXED JENKINS-6446] Modified the global config view of unit tests so that it
will be displayed in a separate table rather than using a top level title
Commit: c66201634b4310a7e1bb157c36026631093b22c1
https://github.com/jenkinsci/ci-game-plugin/commit/c66201634b4310a7e1bb157c36026631093b22c1
Author: simschla <[email protected]>
Date: 2013-11-03 (Sun, 03 Nov 2013)
Changed paths:
M pom.xml
M src/main/java/hudson/plugins/cigame/GameDescriptor.java
A
src/main/java/hudson/plugins/cigame/rules/unittesting/AbstractFailedTestsRule.java
A
src/main/java/hudson/plugins/cigame/rules/unittesting/AbstractPassedTestsRule.java
A
src/main/java/hudson/plugins/cigame/rules/unittesting/AbstractSkippedTestsRule.java
M
src/main/java/hudson/plugins/cigame/rules/unittesting/AbstractUnitTestsRule.java
A
src/main/java/hudson/plugins/cigame/rules/unittesting/DecreasingFailedTestsRule.java
A
src/main/java/hudson/plugins/cigame/rules/unittesting/DecreasingPassedTestsRule.java
A
src/main/java/hudson/plugins/cigame/rules/unittesting/DecreasingSkippedTestsRule.java
M
src/main/java/hudson/plugins/cigame/rules/unittesting/IncreasingFailedTestsRule.java
M
src/main/java/hudson/plugins/cigame/rules/unittesting/IncreasingPassedTestsRule.java
A
src/main/java/hudson/plugins/cigame/rules/unittesting/IncreasingSkippedTestsRule.java
R
src/main/java/hudson/plugins/cigame/rules/unittesting/RemovedFailedTestsRule.java
R
src/main/java/hudson/plugins/cigame/rules/unittesting/RemovedPassedTestsRule.java
M
src/main/java/hudson/plugins/cigame/rules/unittesting/UnitTestingRuleSet.java
M src/main/resources/hudson/plugins/cigame/GamePublisher/global.jelly
M src/main/resources/hudson/plugins/cigame/GamePublisher/global.properties
A
src/main/resources/hudson/plugins/cigame/GamePublisher/help-failedTestDecreasingPoints.html
A
src/main/resources/hudson/plugins/cigame/GamePublisher/help-failedTestIncreasingPoints.html
A
src/main/resources/hudson/plugins/cigame/GamePublisher/help-passedTestDecreasingPoints.html
A
src/main/resources/hudson/plugins/cigame/GamePublisher/help-passedTestIncreasingPoints.html
A
src/main/resources/hudson/plugins/cigame/GamePublisher/help-skippedTestDecreasingPoints.html
A
src/main/resources/hudson/plugins/cigame/GamePublisher/help-skippedTestIncreasingPoints.html
M
src/main/resources/hudson/plugins/cigame/rules/unittesting/Messages.properties
M
src/test/java/hudson/plugins/cigame/rules/unittesting/IncreasingFailedTestsRuleTest.java
M
src/test/java/hudson/plugins/cigame/rules/unittesting/IncreasingPassedTestsRuleTest.java
M
src/test/java/hudson/plugins/cigame/rules/unittesting/MavenMultiModuleUnitTestsTest.java
Log Message:
-----------
Merge pull request #11 from lkamal/master
[FIXED JENKINS-6446] added global configurations for all the six types of
unittest changes (increase or descrease of passed, failed and skipped tests)
Compare:
https://github.com/jenkinsci/ci-game-plugin/compare/321ce5b740db...c66201634b43
--
You received this message because you are subscribed to the Google Groups
"Jenkins Commits" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.