I got a jenkins project which runs a PHPUnit testsuite. Based on Parameters in Jenkins, the Testsuite runs different testgroups in phpunit. Tests with different parameters run automatically over time. For example: - Test1: Every hour groups "a","b" and "c" are testet - Test2: Every 5 Minutes group "b" is tested seperately
Now I got a failing test in group "c", the result is as follows: - Test1 runs: Build failed because of the failing test in group "c" - 5 Minutes later Test2 runs: Build is marked as "Fixed" because the failing test wasn't part of the build - Test2 runs few more times - After an hour, Test1 runs again. Build fails because of the again because of the failing test and everything starts over again Now every hour the build switches to failed then to fixed, which is getting quite annoying... Is there any way to avoid this behaviour (apart from using different projects)? Like a parameter-dependent "fixed"? -- You received this message because you are subscribed to the Google Groups "Jenkins Users" 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.
