File tree Expand file tree Collapse file tree 3 files changed +15
-10
lines changed
Expand file tree Collapse file tree 3 files changed +15
-10
lines changed Original file line number Diff line number Diff line change @@ -139,8 +139,8 @@ numpy = ["1.25", "2.1"]
139139features = [" gpu" ]
140140
141141[tool .hatch .envs .test .scripts ]
142- run-coverage = " pytest --cov-config=pyproject.toml --cov=pkg --cov=tests "
143- run-coverage-gpu = " pip install cupy-cuda12x && pytest -m gpu --cov-config=pyproject.toml --cov=pkg --cov=tests "
142+ run-coverage = " pytest --cov-config=pyproject.toml --cov=pkg --cov=src "
143+ run-coverage-gpu = " pip install cupy-cuda12x && pytest -m gpu --cov-config=pyproject.toml --cov=pkg --cov=src "
144144run = " run-coverage --no-cov"
145145run-verbose = " run-coverage --verbose"
146146run-mypy = " mypy src"
@@ -160,7 +160,7 @@ numpy = ["1.25", "2.1"]
160160version = [" minimal" ]
161161
162162[tool .hatch .envs .gputest .scripts ]
163- run-coverage = " pytest -m gpu --cov-config=pyproject.toml --cov=pkg --cov=tests "
163+ run-coverage = " pytest -m gpu --cov-config=pyproject.toml --cov=pkg --cov=src "
164164run = " run-coverage --no-cov"
165165run-verbose = " run-coverage --verbose"
166166run-mypy = " mypy src"
Original file line number Diff line number Diff line change @@ -189,6 +189,18 @@ async def set_partial_values(
189189 await concurrent_map (args , asyncio .to_thread , limit = None ) # TODO: fix limit
190190
191191 async def delete (self , key : str ) -> None :
192+ """
193+ Remove a key from the store.
194+
195+ Parameters
196+ ----------
197+ key : str
198+
199+ Notes
200+ -----
201+ If ``key`` is a directory within this store, the entire directory
202+ at ``store.root / key`` is deleted.
203+ """
192204 # docstring inherited
193205 self ._check_writable ()
194206 path = self .root / key
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments