Github user NicoK commented on a diff in the pull request: https://github.com/apache/flink/pull/5870#discussion_r182699788 --- Diff: flink-tests/src/test/java/org/apache/flink/test/runtime/NetworkStackThroughputITCase.java --- @@ -327,7 +335,8 @@ private JobGraph createJobGraph(int dataVolumeGb, boolean useForwarder, boolean return jobGraph; } - private void runAllTests() throws Exception { + @Test + public void runAllTests() throws Exception { --- End diff -- how about having `testThroughput()` as the test and inline `runAllTests()` into `main()`?
---