Skip to content

Commit c55af77

Browse files
bug: allow explicit hidden file paths in --reload-include (#2176)
* bug: allow explicit hidden file paths in `--reload-include` * remove modifying `default_excludes` array * modify `should_watch_file` to handle explicit patching path * modify watchfiles filter to handle explicit paths --------- Co-authored-by: Michael Oliver <[email protected]>
1 parent 2c55f20 commit c55af77

File tree

4 files changed

+35
-0
lines changed

4 files changed

+35
-0
lines changed

tests/conftest.py

+3
Original file line numberDiff line numberDiff line change
@@ -124,6 +124,9 @@ def reload_directory_structure(tmp_path_factory: pytest.TempPathFactory):
124124
│   └── sub.py
125125
├── ext
126126
│   └── ext.jpg
127+
├── .dotted
128+
├── .dotted_dir
129+
│   └── file.txt
127130
└── main.py
128131
"""
129132
root = tmp_path_factory.mktemp("reload_directory")

tests/supervisors/test_reload.py

+26
Original file line numberDiff line numberDiff line change
@@ -279,6 +279,32 @@ def test_override_defaults(self, touch_soon) -> None:
279279

280280
reloader.shutdown()
281281

282+
@pytest.mark.parametrize(
283+
"reloader_class",
284+
[
285+
pytest.param(WatchFilesReload, marks=skip_if_m1),
286+
WatchGodReload,
287+
],
288+
)
289+
def test_explicit_paths(self, touch_soon) -> None:
290+
dotted_file = self.reload_path / ".dotted"
291+
non_dotted_file = self.reload_path / "ext" / "ext.jpg"
292+
python_file = self.reload_path / "main.py"
293+
294+
with as_cwd(self.reload_path):
295+
config = Config(
296+
app="tests.test_config:asgi_app",
297+
reload=True,
298+
reload_includes=[".dotted", "ext/ext.jpg"],
299+
)
300+
reloader = self._setup_reloader(config)
301+
302+
assert self._reload_tester(touch_soon, reloader, dotted_file)
303+
assert self._reload_tester(touch_soon, reloader, non_dotted_file)
304+
assert self._reload_tester(touch_soon, reloader, python_file)
305+
306+
reloader.shutdown()
307+
282308
@pytest.mark.skipif(WatchFilesReload is None, reason="watchfiles not available")
283309
@pytest.mark.parametrize("reloader_class", [WatchFilesReload])
284310
def test_watchfiles_no_changes(self) -> None:

uvicorn/supervisors/watchfilesreload.py

+3
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,9 @@ def __init__(self, config: Config):
4343
def __call__(self, path: Path) -> bool:
4444
for include_pattern in self.includes:
4545
if path.match(include_pattern):
46+
if str(path).endswith(include_pattern):
47+
return True
48+
4649
for exclude_dir in self.exclude_dirs:
4750
if exclude_dir in path.parents:
4851
return False

uvicorn/supervisors/watchgodreload.py

+3
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,9 @@ def should_watch_file(self, entry: "DirEntry") -> bool:
5656
self.watched_files[entry.path] = False
5757
return False
5858
for include_pattern in self.includes:
59+
if str(entry_path).endswith(include_pattern):
60+
self.watched_files[entry.path] = True
61+
return True
5962
if entry_path.match(include_pattern):
6063
for exclude_pattern in self.excludes:
6164
if entry_path.match(exclude_pattern):

0 commit comments

Comments
 (0)