Don't reload source on changes in Test directory
This commit is contained in:
parent
d65c7d05a4
commit
32c63fb140
1 changed files with 2 additions and 0 deletions
|
@ -40,9 +40,11 @@ class DebugReloader:
|
||||||
if (
|
if (
|
||||||
not evt.path or "%s/" % config.data_dir in evt.path or
|
not evt.path or "%s/" % config.data_dir in evt.path or
|
||||||
(not evt.path.endswith("py") and not evt.path.endswith("json")) or
|
(not evt.path.endswith("py") and not evt.path.endswith("json")) or
|
||||||
|
"Test" in evt.path or
|
||||||
time.time() - self.last_chaged < 1
|
time.time() - self.last_chaged < 1
|
||||||
):
|
):
|
||||||
return False # Ignore *.pyc changes and no reload within 1 sec
|
return False # Ignore *.pyc changes and no reload within 1 sec
|
||||||
time.sleep(0.1) # Wait for lock release
|
time.sleep(0.1) # Wait for lock release
|
||||||
|
logging.debug("Changed: %s, reloading source." % evt.path)
|
||||||
self.callback()
|
self.callback()
|
||||||
self.last_chaged = time.time()
|
self.last_chaged = time.time()
|
||||||
|
|
Loading…
Reference in a new issue