Add max-entries option for nostr index size test

This commit is contained in:
thePR0M3TH3AN
2025-07-03 22:05:56 -04:00
parent d2e845f98c
commit 1804edd0de
2 changed files with 16 additions and 3 deletions

View File

@@ -20,6 +20,12 @@ def pytest_addoption(parser: pytest.Parser) -> None:
default=False,
help="run desktop-only tests",
)
parser.addoption(
"--max-entries",
type=int,
default=None,
help="maximum entries for nostr index size test",
)
def pytest_configure(config: pytest.Config) -> None: