forked from github/pelican
7 lines
168 B
Python
7 lines
168 B
Python
|
|
def pytest_addoption(parser):
|
||
|
|
parser.addoption(
|
||
|
|
"--check-wheel",
|
||
|
|
action="store",
|
||
|
|
default=False,
|
||
|
|
help="Check wheel contents.",
|
||
|
|
)
|