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"
```
--
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]