There was an error while loading. Please reload this page.
1 parent e6c9509 commit ed679fcCopy full SHA for ed679fc
test/test_multiprocessing.py
@@ -112,9 +112,10 @@ def __exit__(self, *args):
112
# test is no more than 4 higher than the 10th available at the
113
# start. This attempts to catch file descriptor leaks, but allows
114
# one-off initialization that may use up a file descriptor
115
- available_fds = self._get_next_fds(10)
116
- self.test_case.assertLessEqual(
117
- available_fds[-1] - self.next_fds[-1], 5)
+ # TODO: Disabled because this check is too flaky
+ # available_fds = self._get_next_fds(10)
+ # self.test_case.assertLessEqual(
118
+ # available_fds[-1] - self.next_fds[-1], 5)
119
self.test_case.assertFalse(self.has_shm_files())
120
return False
121
0 commit comments