@@ -95,7 +95,7 @@ def changelog(ctx, token, revision_range):
95
95
)
96
96
@click .argument ("meson_args" , nargs = - 1 )
97
97
@click .pass_context
98
- def build (ctx , meson_args , with_scipy_openblas , jobs = None , clean = False , verbose = False , quiet = False ):
98
+ def build (ctx , meson_args , with_scipy_openblas , jobs = None , clean = False , verbose = False , quiet = False , * args , ** kwargs ):
99
99
"""🔧 Build package with Meson/ninja and install
100
100
101
101
MESON_ARGS are passed through e.g.:
@@ -136,7 +136,7 @@ def build(ctx, meson_args, with_scipy_openblas, jobs=None, clean=False, verbose=
136
136
help = "Number of parallel build jobs"
137
137
)
138
138
@click .pass_context
139
- def docs (ctx , sphinx_target , clean , first_build , jobs ):
139
+ def docs (ctx , sphinx_target , clean , first_build , jobs , * args , ** kwargs ):
140
140
"""📖 Build Sphinx documentation
141
141
142
142
By default, SPHINXOPTS="-W", raising errors on warnings.
@@ -205,7 +205,7 @@ def docs(ctx, sphinx_target, clean, first_build, jobs):
205
205
'--verbose' , '-v' , is_flag = True , default = False
206
206
)
207
207
@click .pass_context
208
- def test (ctx , pytest_args , markexpr , n_jobs , tests , verbose ):
208
+ def test (ctx , pytest_args , markexpr , n_jobs , tests , verbose , * args , ** kwargs ):
209
209
"""🔧 Run tests
210
210
211
211
PYTEST_ARGS are passed through directly to pytest, e.g.:
@@ -486,7 +486,7 @@ def bench(ctx, tests, compare, verbose, quick, commits):
486
486
})
487
487
@click .argument ("python_args" , metavar = '' , nargs = - 1 )
488
488
@click .pass_context
489
- def python (ctx , python_args ):
489
+ def python (ctx , python_args , * args , ** kwargs ):
490
490
"""🐍 Launch Python shell with PYTHONPATH set
491
491
492
492
OPTIONS are passed through directly to Python, e.g.:
0 commit comments