suztomo edited a comment on pull request #14295:
URL: https://github.com/apache/beam/pull/14295#issuecomment-805861194
With this (not specifying
`testTeardownCalledAfterExceptionInFinishBundleStateful`), it failed in 7 times
for 100 attempts.
```
#!/bin/bash
C=0
for I in `seq 100`; do
echo "Attempt: $I"
./gradlew --no-build-cache -p runners/direct-java cleanTest
needsRunnerTests --tests org.apache.beam.sdk.transforms.ParDoLifecycleTest
if [ "$?" != 0 ];then
C=$((C+1))
fi
done
echo "Failed $C times"
```
Tried `Parameterized.class` to run it repeatedly.
https://github.com/apache/beam/commit/498cf76ac55939713a4a4fbef711a21a652ebcf8
It fails in the master branch too: "1100 tests completed, 6 failed".
I tried with master branch (ab1dfa13), it failed 9 times. Therefore this
branch "suztomo:BEAM-11227_apply" does not deteriorate the likelihood of the
failure, at least on my laptop.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]