forked from github/pelican
- adapt documentation - add wheel tests to check wheel contents. - adapt pipeline to use pdm - adapt autopub config - add scripts as shortcuts to invoke tasks
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.",
|
|
)
|