Fixed #32913 -- Made watchman reloader tests less flaky.

This commit is contained in:
Nick Pope 2021-07-23 10:40:57 +01:00 committed by GitHub
parent 3cfcb8cbc8
commit 6b513f0137
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -684,7 +684,7 @@ class WatchmanReloaderTests(ReloaderTests, IntegrationTests):
def setUp(self):
super().setUp()
# Shorten the timeout to speed up tests.
self.reloader.client_timeout = 0.1
self.reloader.client_timeout = int(os.environ.get('DJANGO_WATCHMAN_TIMEOUT', 2))
def test_watch_glob_ignores_non_existing_directories_two_levels(self):
with mock.patch.object(self.reloader, '_subscribe') as mocked_subscribe: