spelling: manifest
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
This commit is contained in:
parent
6b3939eff4
commit
22936ed2d8
|
@ -21,7 +21,7 @@ class ManifestDirectory(pytest.Directory):
|
||||||
|
|
||||||
@pytest.hookimpl
|
@pytest.hookimpl
|
||||||
def pytest_collect_directory(path, parent):
|
def pytest_collect_directory(path, parent):
|
||||||
# Use our custom collector for directories containing a `mainfest.json` file.
|
# Use our custom collector for directories containing a `manifest.json` file.
|
||||||
if path.joinpath("manifest.json").is_file():
|
if path.joinpath("manifest.json").is_file():
|
||||||
return ManifestDirectory.from_parent(parent=parent, path=path)
|
return ManifestDirectory.from_parent(parent=parent, path=path)
|
||||||
# Otherwise fallback to the standard behavior.
|
# Otherwise fallback to the standard behavior.
|
||||||
|
|
Loading…
Reference in New Issue