Invocations¶
What is this?¶
Invocations is a collection of reusable Invoke tasks, task collections and helper functions. Originally sourced from the Invoke project’s own project-management tasks file, they are now highly configurable and used across a number of projects, with the intent to become a clearinghouse for implementing common best practices.
Currently implemented topics include (but are not limited to):
management of Sphinx documentation trees
Python project release lifecycles
dependency vendoring
running test suites (unit, integration, coverage-oriented, etc)
console utilities such as confirmation prompts
and more.
Roadmap¶
While Invocations has been released with a major version number to signal adherence to semantic versioning, it’s somewhat early in development and has not fully achieved its design vision yet.
We expect it to gain maturity in tandem with the adoption and development of Invoke post-1.x. It’s also highly likely that Invocations will see a few major releases as its API (and those of its sister library, patchwork) matures.
For a high level roadmap re: when Invocations will get significant updates, see the maintainer’s roadmap page.
Development¶
This project uses the same dev methodology as Invoke proper - please see its development page here.
Contents¶
Changelog¶
Next 2.x feature release
[Support]: Remove upper bounds pinning on many deps; this makes it easier for related projects to test upgrades, run CI, etc. In general, we’re moving away from this tactic.
3.1.0 2023-05-02
[Feature]: Updated
packaging.release.test_install
to attempt imports of freshly test-installed packages, to catch import-time errors on top of install-time ones. This can be opted out of by giving theskip_import
kwarg (aka the--skip-import
flag on the CLI).[Support]: Unpin
tabulate
in our install requirements, it’s had many more releases since we instituted a defensive pin vs some bugs in its later 0.7 line!
3.0.2 2023-04-28
[Support]: Unpin
tabulate
in our install requirements, it’s had many more releases since we instituted a defensive pin vs some bugs in its later 0.7 line!
3.0.1 2023-01-06
[Bug]: We neglected to remove references to
six
in a few spots - including some that utilized Invoke’s old vendor of same; this causes issues when trying to use development and upcoming versions of Invoke. Six is now truly gone!
3.0.0 2022-12-31
[Support]: Drop Python 2 (and 3.5) support. We now support Python 3.6+ only. This naturally includes a number of dependency updates (direct and indirect) as well.
Warning
This is a backwards-incompatible change.
[Support]: The
invocations.travis
module has been removed. If you relied upon it, we may accept PRs to make the newerinvocations.ci
module more generic.Warning
This is a backwards-incompatible change.
[Support]: The
dual_wheels
,alt_python
, andcheck_desc
arguments/config options for theinvocations.packaging.release
module have been removed.Warning
This is a backwards-incompatible change.
Note
If you were using
check_desc
, note that the release tasks have been usingtwine check
for a few releases now, as a default part of execution, and will continue doing so;check_desc
only impacted the use of the oldersetup.py check
command.[Support]: Various fixes and doc updates re: the
autodoc
module’s compatibility with modern Sphinx versions.
2.6.1 2022-06-26
[Support]: Remove upper bounds pinning on many deps; this makes it easier for related projects to test upgrades, run CI, etc. In general, we’re moving away from this tactic.
2.6.0 2022-03-25
[Feature]: Update
packaging.release.publish
with a new config option,rebuild_with_env
, to support a downstream (Fabric) release use-case.[Feature]: Enhance
packaging.release.test-install
so it’s more flexible about the primary directory argument (re: adist
dir, or a parent of one) and errors usefully when you (probably) gave it an incorrect path.
2.5.0 2022-03-25
[Feature]: Port
make-sshable
from thetravis
module to the newci
one.
2.4.0 2022-03-17
[Feature]: Add additional CLI flags to the use of
gpg
when signing releases, to support headless passphrase entry. It was found that modern GPG versions require--batch
and--pinentry-mode=loopback
for--passphrase-fd
to function correctly.[Feature]: Add a new
invocations.ci
task module for somewhat-more-generic CI support than the now legacyinvocations.travis
tasks.[Feature]: Allow supplying additional test runners to
pytest.coverage
; primarily useful for setting up multiple additive test runs before publishing reports.
2.3.0 2021-09-24
[Bug]: The
packaging.release.upload
task wasn’t properly exposed externally, even though another task’s docstring referenced it. Fixed.[Bug]: Ensure that the venv used for
packaging.release.test_install
has itspip
upgraded to match the invoking interpreter’s version of same; this avoids common pitfalls where the “inner” pip is a bundled-with-venv, much-older version incapable of modern package installations.[Support]: Overhaul testing and release procedures to use CircleCI & modern Invocations.
2.2.0 2021-09-03
[Feature]: Added the
invocations.environment
module with top-level functions such asin_ci
.[Feature]:
packaging.release.push
, in dry-run mode, now dry-runs itsgit push
subcommand – meaning the subcommand itself is what is “dry-ran”, instead of truly executinggit push --dry-run
– when a CI environment is detected.This prevents spurious errors when the git remote (eg Github) bails out on read-only authentication credentials, which is common within CI systems.
It’s also just not very useful to dry-run a real git push within CI, since almost certainly the commands to generate git objects to get pushed will themselves not have truly run!
[Bug]:
packaging.release.status
(and its use elsewhere, egprepare
) didn’t adequately reload the local project’s version module during its second/final recheck; this causes that check to fail when said version was edited as part of aprepare
run. It now force-reloads said version module.
2.1.0 2021-08-27
[Feature]: Added
twine check
(which validates packaging metadata’slong_description
) as a pre-upload step withinpackaging.release.publish
.This includes some tweaking of
readme_renderer
behavior (used internally by twine) so it correctly spots more malformed RST, as Sphinx does.
[Feature]: Add
packaging.release.push
for pushing Git objects as part of a release.[Feature]: The
packaging.release.all_
task has been expanded to actually do “ALL THE THINGS!!!”, given adry_run
flag, and renamed on the CLI toall
(no trailing underscore).[Feature]:
packaging.release.prepare
grew adry_run
flag to match the rest of its friends.[Feature]: Add Codecov support to
pytest.coverage
.[Feature]: Add
packaging.release.test_install
task and call it just prior to the final step inpackaging.release.upload
(so one doesn’t upload packages which build OK but don’t actually install OK).[Bug]:
pytest.coverage
incorrectly concatenated itsopts
argument to internal options; this has been fixed.[Bug]: Correctly test for
html
report type inside ofpytest.coverage
when deciding whether to runopen
at the end.[Bug]:
packaging.release.publish
missed a spot when it grew “kwargs beat configuration” behavior - theindex
kwarg still got overwritten by the config value, if defined. This has been fixed.[Bug]:
packaging.release.prepare
now generates annotated Git tags instead of lightweight ones. This was a perplexing oversight (Git has always intended annotated tags to be used for release purposes) so we’re considering it a bugfix instead of a backwards incompatible feature change.[Support]:
packaging.release.prepare
now runs its internal status check twice, once at the start (as before) and again at the end (to prove that the actions taken did in fact satisfy needs).[Support]: Rely on Invoke 1.6+ for some of its new features.
2.0.0 2021-01-24
[Feature]: Add a
warnings
kwarg/flag topytest.test
, allowing one to call it with--no-warnings
as an inline ‘alias’ for pytest’s own--disable-warnings
flag.[Bug]: Fix minor display bug causing the
pytest
task module to append a trailing space to the invocation of pytest itself.[Bug]:
release.build
andrelease.publish
had bad kwargs-vs-config logic preventing flags such as--wheel
or--python
from actually working (config defaults always won out, leading to silent ignoring of user input). This has been fixed; config will now only be honored unless the CLI appears to be overriding it.[Bug]:
release.build
’s--clean
flag has been updated:It now honors configuration like the other flags in this task, specifically
packaging.clean
.It now defaults to
False
(rationale: most build operations in the wild tend to assume no cleaning by default, so defaulting to the opposite was sometimes surprising).Warning
This is a backwards incompatible change.
When
True
, it applies to both build and dist directories, instead of just build.Warning
This is a backwards incompatible change.
[Support]: Modify
release
task tree to look atmain
branches in addition tomaster
ones, for “are we on a feature release line or a bugfix one?” calculations, etc.[Support]: Replace some old Python 2.6-compatible syntax bits.
[Support]: Reverse the default value of
release.build
andrelease.publish
)’swheel
argument fromFalse
toTrue
. Included in this change is a new required runtime dependency on thewheel
package.Rationale: at this point in time, most users will be expecting wheels to be available, and not building wheels is likely to be the uncommon case.
Warning
This is a backwards incompatible change.
[Support] #21: Only require
enum34
under Python 2 to prevent it clashing with the stdlibenum
under Python 3. Credit: Alex Gaynor.[Support] #12: Upgrade our packaging manifest so tests (also docs, requirements files, etc) are included in the distribution archives. Thanks to Tomáš Chvátal for the report.
[Support]: Drop Python 3.4 support. We didn’t actually do anything to make the code not work on 3.4, but we’ve removed some 3.4 related runtime (and development) dependency limitations. Our CI will also no longer test on 3.4.
Warning
This is technically a backwards incompatible change.
1.4.0 2018-06-26
[Feature]: Add a
find_opts
argument tochecks.blacken
for improved control over what files get blackened.
1.3.1 2018-06-26
[Bug]:
checks.blacken
had a typo regarding its folder selection argument; the CLI/function arg wasfolder
while the configuration value wasfolders
(plural). It’s been made consistent: the CLI/function argument is nowfolders
.[Bug]: Was missing a ‘hide output’ flag on a subprocess shell call, the result of which was mystery git branch names appearing in the output of
inv release
and friends. Fixed now.
1.2.2 2018-06-26
[Bug]:
checks.blacken
had a typo regarding its folder selection argument; the CLI/function arg wasfolder
while the configuration value wasfolders
(plural). It’s been made consistent: the CLI/function argument is nowfolders
.[Bug]: Was missing a ‘hide output’ flag on a subprocess shell call, the result of which was mystery git branch names appearing in the output of
inv release
and friends. Fixed now.
1.1.1 2018-06-26
[Bug]:
checks.blacken
had a typo regarding its folder selection argument; the CLI/function arg wasfolder
while the configuration value wasfolders
(plural). It’s been made consistent: the CLI/function argument is nowfolders
.[Bug]: Was missing a ‘hide output’ flag on a subprocess shell call, the result of which was mystery git branch names appearing in the output of
inv release
and friends. Fixed now.[Support]: Remove some apparently non-functional
setup.py
logic around conditionally requiringenum34
; it was never getting selected and thus breaking a couple modules that relied on it.enum34
is now a hard requirement like the other semi-optional-but-not-really requirements.
1.0.1 2018-06-26
[Bug]:
checks.blacken
had a typo regarding its folder selection argument; the CLI/function arg wasfolder
while the configuration value wasfolders
(plural). It’s been made consistent: the CLI/function argument is nowfolders
.[Bug]: Was missing a ‘hide output’ flag on a subprocess shell call, the result of which was mystery git branch names appearing in the output of
inv release
and friends. Fixed now.[Support]: Remove some apparently non-functional
setup.py
logic around conditionally requiringenum34
; it was never getting selected and thus breaking a couple modules that relied on it.enum34
is now a hard requirement like the other semi-optional-but-not-really requirements.
1.3.0 2018-06-20
[Feature]: Bump Releases requirement up to 1.6 and leverage its new ability to load Sphinx extensions, in
packaging.release.prepare
(which parses Releases changelogs programmatically). Prior to this, projects which needed extensions to build their doctree would throw errors when using thepackaging.release
module.[Support]: Remove some apparently non-functional
setup.py
logic around conditionally requiringenum34
; it was never getting selected and thus breaking a couple modules that relied on it.enum34
is now a hard requirement like the other semi-optional-but-not-really requirements.
1.2.1 2018-06-18
[Support]: Remove some apparently non-functional
setup.py
logic around conditionally requiringenum34
; it was never getting selected and thus breaking a couple modules that relied on it.enum34
is now a hard requirement like the other semi-optional-but-not-really requirements.
1.2.0 2018-05-22
[Feature]: Add the
checks
module, containingchecks.blacken
which executes the black code formatter. Thanks to Chris Rose.[Feature]: Add ‘missing’ arguments to
pytest.integration
so its signature now largely matchespytest.test
, which it wraps.[Feature]: Break out a generic form of the
travis.sudo-coverage
task intotravis.sudo-run
which can be used for arbitrary commands run under the ssh/sudo capable user generated bytravis.make-sudouser
/travis.make-sshable
.[Feature]: Add
travis.blacken
which wraps the newchecks.blacken
(in diff+check mode, for test output useful for users who cannot themselves simply run black) in addition to performing Travis-oriented Python version checks and pip installation.This is necessary to remove boilerplate around the fact that
black
is not even visible to Python versions less than 3.6.
1.1.0 2018-05-14
[Feature]: Split out the body of the (sadly incomplete)
packaging.release.all
task into the better-namedpackaging.release.prepare
. (all
continues to behave as it did, it just now callsprepare
explicitly.)
1.0.0 2018-05-08
[Feature]: Pre-history / code primarily for internal consumption
API/task docs¶
autodoc
¶
Sphinx autodoc hooks for documenting Invoke-level objects such as tasks.
Unlike most of the rest of Invocations, this module isn’t for reuse in the “import and call functions” sense, but instead acts as a Sphinx extension which allows Sphinx’s autodoc functionality to see and document Invoke tasks and similar Invoke objects.
Note
This functionality is mostly useful for redistributable/reusable tasks
which have been defined as importable members of some Python package or
module, as opposed to “local-only” tasks that live in a single project’s
tasks.py
.
However, it will work for any tasks that Sphinx autodoc can import, so in a
pinch you could for example tweak sys.path
in your Sphinx conf.py
to get it loading up a “local” tasks file for import.
To use:
Add
"invocations.autodoc"
to your Sphinxconf.py
’sextensions
list.Use Sphinx autodoc’s
automodule
directive normally, aiming it at your tasks module(s), e.g... automodule:: myproject.tasks
in some.rst
document of your choosing.As noted above, this only works for modules that are importable, like any other Sphinx autodoc use case.
Unless you want to opt-in which module members get documented, use
:members:
or add"members": True
to yourconf.py
’sautodoc_default_options
.By default, only tasks with docstrings will be picked up, unless you also give the
:undoc-members:
flag or add:undoc-members:
/ add"undoc-members": True
toautodoc_default_options
.Please see the autodoc docs for details on these settings and more!
Build your docs, and you should see your tasks showing up as documented functions in the result.
ci
¶
Tasks intended for use under continuous integration.
Presently, this tends to assume CircleCI, but it is intended to be generic & we’ll accept patches to make any Circle-isms configurable.
Most of it involves setting up to run a test suite under a special user who is
allowed to run sudo
and who also needs a password to do so. This allows
testing sudo-related functionality which would otherwise suffer
false-positives, since most CI environments allow passwordless sudo for the
default user.
Thus, the pattern is:
use that default user’s sudo privileges to generate the special user (if they don’t already exist in the image)
as the default user, execute the test suite runner via
sudo -u <user>
the test suite will then at times run its own
sudo someprogram
& be prompted for its password (which the test suite should read from the config data, same as this outer set of tasks does).
Note
This module defines default values for the ci.sudo
config subtree, but
if you’re using an execution environment where the default sudoers group
isn’t sudo
(eg wheel
) you’ll want to override ci.sudo.group
in
your own config files.
- invocations.ci.make_sshable(c)¶
Set up passwordless SSH keypair & authorized_hosts access to localhost.
- invocations.ci.make_sudouser(c)¶
Create a passworded sudo-capable user.
Used by other tasks to execute the test suite so sudo tests work.
console
¶
Text console UI helpers and patterns, e.g. ‘Y/n’ prompts and the like.
- invocations.console.confirm(question, assume_yes=True)¶
Ask user a yes/no question and return their response as a boolean.
question
should be a simple, grammatically complete question such as “Do you wish to continue?”, and will have a string similar to" [Y/n] "
appended automatically. This function will not append a question mark for you.By default, when the user presses Enter without typing anything, “yes” is assumed. This can be changed by specifying
assume_yes=False
.Note
If the user does not supply input that is (case-insensitively) equal to “y”, “yes”, “n” or “no”, they will be re-prompted until they do.
docs
¶
Tasks for managing Sphinx documentation trees.
- invocations.docs.build(c, clean=False, browse=False, nitpick=False, opts=None, source=None, target=None)¶
Build the project’s Sphinx docs.
- invocations.docs.doctest(c)¶
Run Sphinx’ doctest builder.
This will act like a test run, displaying test results & exiting nonzero if all tests did not pass.
A temporary directory is used for the build target, as the only output is the text file which is automatically printed.
- invocations.docs.sites(c)¶
Build both doc sites w/ maxed nitpicking.
- invocations.docs.tree(c)¶
Display documentation contents with the ‘tree’ program.
- invocations.docs.watch_docs(c)¶
Watch both doc trees & rebuild them if files change.
This includes e.g. rebuilding the API docs if the source code changes; rebuilding the WWW docs if the README changes; etc.
Reuses the configuration values
packaging.package
ortests.package
(the former winning over the latter if both defined) when determining which source directory to scan for API doc updates.
environment
¶
Helpers concerning the invoking shell environment.
For example, generalized “do we appear to be on CI?” tests, which may be used in multiple other modules.
- invocations.environment.in_ci()¶
Return
True
if we appear to be running inside a CI environment.Checks for CI system env vars such as
CIRCLECI
orTRAVIS
- specifically whether they exist and are non-empty. The actual value is not currently relevant, as long as it’s not the empty string.
packaging
¶
packaging.release
¶
Python package release tasks.
This module assumes:
you’re using semantic versioning for your releases
you maintain a file called
$package/_version.py
containing normal version conventions (__version_info__
tuple and__version__
string).
- class invocations.packaging.release.Changelog(value)¶
An enumeration.
- class invocations.packaging.release.Release(value)¶
An enumeration.
- class invocations.packaging.release.Tag(value)¶
An enumeration.
- class invocations.packaging.release.VersionFile(value)¶
An enumeration.
- invocations.packaging.release.all_(c, dry_run=False)¶
Catchall version-bump/tag/changelog/PyPI upload task.
- Parameters
dry_run (bool) – Handed to all subtasks which themselves have a
dry_run
flag.
Changed in version 2.1: Expanded functionality to run
publish
andpush
as well asprepare
.Changed in version 2.1: Added the
dry_run
flag.
- invocations.packaging.release.build(c, sdist=True, wheel=True, directory=None, python=None, clean=False)¶
Build sdist and/or wheel archives, optionally in a temp base directory.
All parameters/flags honor config settings of the same name, under the
packaging
tree. E.g. say.configure({'packaging': {'wheel': False}})
to disable building wheel archives by default.- Parameters
sdist (bool) – Whether to build sdists/tgzs. Default:
True
.wheel (bool) – Whether to build wheels (requires the
wheel
package from PyPI). Default:True
.directory (str) –
Allows specifying a specific directory in which to perform builds and dist creation. Useful when running as a subroutine from
publish
which sets up a temporary directory.Up to two subdirectories may be created within this directory: one for builds (if building wheels), and one for the dist archives.
When
None
or another false-y value (which is the default), the current working directory is used (and thus, localdist/
andbuild/
subdirectories).python (str) –
Which Python binary to use when invoking
setup.py
.Defaults to
"python"
.If
wheel=True
, then this Python must havewheel
installed in its defaultsite-packages
(or similar) location.clean – Whether to clean out the build and dist directories before building.
Changed in version 2.0:
clean
now defaults to False instead of True, cleans both dist and build dirs when True, and honors configuration.Changed in version 2.0:
wheel
now defaults to True instead of False.
- invocations.packaging.release.prepare(c, dry_run=False)¶
Edit changelog & version, git commit, and git tag, to set up for release.
- Parameters
dry_run (bool) – Whether to take any actual actions or just say what might occur. Will also non-fatally exit if not on some form of release branch. Default:
False
.- Returns
True
if short-circuited due to all-ok,None
otherwise.
Changed in version 2.1: Added the
dry_run
parameter.Changed in version 2.1: Generate annotated git tags instead of lightweight ones.
- invocations.packaging.release.publish(c, sdist=True, wheel=True, index=None, sign=False, dry_run=False, directory=None)¶
Publish code to PyPI or index of choice. Wraps
build
andpublish
.This uses the
twine
command under the hood, both its pre-uploadcheck
subcommand (which verifies the archives to be uploaded, including checking your PyPI readme) and theupload
one.All parameters save
dry_run
anddirectory
honor config settings of the same name, under thepackaging
tree. E.g. say.configure({'packaging': {'wheel': True}})
to force building wheel archives by default.- Parameters
sdist (bool) – Whether to upload sdists/tgzs. Default:
True
.wheel (bool) – Whether to upload wheels (requires the
wheel
package from PyPI). Default:True
.index (str) – Custom upload index/repository name. See
upload
help for details.sign (bool) – Whether to sign the built archive(s) via GPG.
dry_run (bool) –
Skip upload step if
True
.This also prevents cleanup of the temporary build/dist directories, so you can examine the build artifacts.
Note that this does not skip the
twine check
step, just the final upload.directory (str) –
Base directory within which will live the
dist/
andbuild/
directories.Defaults to a temporary directory which is cleaned up after the run finishes.
- invocations.packaging.release.push(c, dry_run=False)¶
Push current branch and tags to default Git remote.
- invocations.packaging.release.status(c)¶
Print current release (version, changelog, tag, etc) status.
Doubles as a subroutine, returning the return values from its inner call to
_converge
(an(actions, state)
two-tuple of Lexicons).
- invocations.packaging.release.test_install(c, directory, verbose=False, skip_import=False)¶
Test installation of build artifacts found in
$directory
.Directory should either be a
dist
directory itself, or the parent of one.Uses the
venv
module to build temporary virtualenvs.
- invocations.packaging.release.upload(c, directory, index=None, sign=False, dry_run=False)¶
Upload (potentially also signing) all artifacts in
directory/dist
.- Parameters
index (str) –
Custom upload index/repository name.
By default, uses whatever the invoked
pip
is configured to use. Modify yourpypirc
file to add new named repositories.sign (bool) – Whether to sign the built archive(s) via GPG.
dry_run (bool) –
Skip actual publication step (and dry-run actions like signing) if
True
.This also prevents cleanup of the temporary build/dist directories, so you can examine the build artifacts.
packaging.vendorize
¶
Tasks for importing external code into a vendor subdirectory.
- invocations.packaging.vendorize.vendorize(c, distribution, version, vendor_dir, package=None, git_url=None, license=None)¶
Vendorize Python package
distribution
at version/SHAversion
.Specify the vendor folder (e.g.
<mypackage>/vendor
) asvendor_dir
.For Crate/PyPI releases,
package
should be the name of the software entry on those sites, andversion
should be a specific version number. E.g.vendorize('lexicon', '0.1.2')
.For Git releases,
package
should be the name of the package folder within the checkout that needs to be vendorized andversion
should be a Git identifier (branch, tag, SHA etc.)git_url
must also be given, something suitable forgit clone <git_url>
.For SVN releases: xxx.
For packages where the distribution name is not the same as the package directory name, give
package='name'
.By default, no explicit license seeking is done – we assume the license info is in file headers or otherwise within the Python package vendorized. This is not always true; specify
license=/path/to/license/file
to trigger copying of a license into the vendored folder from the checkout/download (relative to its root.)
pytest
¶
Pytest-using variant of testing.py. Will eventually replace the latter.
- invocations.pytest.coverage(c, report='term', opts='', tester=None, codecov=False, additional_testers=None)¶
Run pytest with coverage enabled.
Assumes the
pytest-cov
pytest plugin is installed.- Parameters
report (str) – Coverage report style to use. If ‘html’, will also open in browser.
opts (str) – Extra runtime opts to pass to pytest.
tester – Specific test task object to invoke. If
None
(default), uses this module’s localtest
.codecov (bool) – Whether to build XML and upload to Codecov. Requires
codecov
tool. Default:False
.additional_testers – List of additional test functions to call besides
tester
. If given, implies the use of--cov-append
on these subsequent test runs.
Changed in version 2.4: Added the
additional_testers
argument.
- invocations.pytest.integration(c, opts=None, pty=True, x=False, k=None, verbose=True, color=True, capture='sys', module=None)¶
Run the integration test suite. May be slow!
See
pytest.test
for description of most arguments.
- invocations.pytest.test(c, verbose=True, color=True, capture='sys', module=None, k=None, x=False, opts='', pty=True, warnings=True)¶
Run pytest with given options.
- Parameters
verbose (bool) – Whether to run tests in verbose mode.
color (bool) – Whether to request colorized output (typically only works when
verbose=True
.)capture (str) – What type of stdout/err capturing pytest should use. Defaults to
sys
since pytest’s own default,fd
, tends to trip up subprocesses trying to detect PTY status. Can be set tono
for no capturing / useful print-debugging / etc.module (str) – Select a specific test module to focus on, e.g.
main
to only runtests/main.py
. (Note that this is a specific idiom aside from the use of-o '-k pattern'
.) Default:None
.k (str) – Convenience passthrough for
pytest -k
, i.e. test selection. Default:None
.x (bool) – Convenience passthrough for
pytest -x
, i.e. fail-fast. Default:False
.opts (str) – Extra runtime options to hand to
pytest
.pty (bool) – Whether to use a pty when executing pytest. Default:
True
.warnings (bool) –
Inverse alias for the pytest
--disable_warnings
flag; when this is False (i.e. called on CLI as--no-warnings
),--disable-warnings
will be given. Default:True
.New in version 2.0.