mirror of
https://github.com/freedomofpress/dangerzone.git
synced 2025-05-05 05:01:49 +02:00
5 lines
229 B
Python
5 lines
229 B
Python
def pytest_addoption(parser):
|
|
parser.addoption(
|
|
"--train", action="store_true", help="Enable training of large document set"
|
|
)
|
|
parser.addoption("--long", action="store_true", help="Enable large training set")
|