Github user StephanEwen commented on the issue:
https://github.com/apache/flink/pull/3190
Many tests assume that the `tmp` directory exists.
I would actually prefer to fix the tests, rather than re-assignign the temp
directory. All tests should use a random subdirectory in the temp directory. It
is quite convenient to do via JUnit:
```java
@Rule
public final TemporaryFolder tmp = new TemporaryFolder();
```
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---