mirror of
https://github.com/django/django.git
synced 2025-08-04 19:08:28 +00:00
Fixed #27685 -- Added watchman support to the autoreloader.
Removed support for pyinotify (refs #9722).
This commit is contained in:
parent
a02a6fd580
commit
c8720e7696
15 changed files with 1229 additions and 465 deletions
|
@ -48,6 +48,9 @@ class AppsTests(SimpleTestCase):
|
|||
self.assertIs(apps.ready, True)
|
||||
# Non-master app registries are populated in __init__.
|
||||
self.assertIs(Apps().ready, True)
|
||||
# The condition is set when apps are ready
|
||||
self.assertIs(apps.ready_event.is_set(), True)
|
||||
self.assertIs(Apps().ready_event.is_set(), True)
|
||||
|
||||
def test_bad_app_config(self):
|
||||
"""
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue