test
pants test [args]
Run tests.
Backend: pants.core
Config section: [test]
Basic options
debug
--[no-]test-debugPANTS_TEST_DEBUG[test]
debug = <bool>
FalseRun tests sequentially in an interactive process. This is necessary, for example, when you add breakpoints to your code.
extra_env_vars
--test-extra-env-vars="['<str>', '<str>', ...]"PANTS_TEST_EXTRA_ENV_VARS[test]
extra_env_vars = [
'<str>',
'<str>',
...,
]
[]Additional environment variables to include in test processes. Entries are strings in the form ENV_VAR=value to use explicitly; or just ENV_VAR to copy the value of a variable in Pants's own environment.
force
--[no-]test-forcePANTS_TEST_FORCE[test]
force = <bool>
FalseForce the tests to run, even if they could be satisfied from cache.
open_coverage
--[no-]test-open-coveragePANTS_TEST_OPEN_COVERAGE[test]
open_coverage = <bool>
FalseIf a coverage report file is generated, open it on the local system if the system supports this.
output
--test-output=<ShowOutput>PANTS_TEST_OUTPUT[test]
output = <ShowOutput>
all, failed, nonedefault:
failedShow stdout/stderr for these tests.
use_coverage
--[no-]test-use-coveragePANTS_TEST_USE_COVERAGE[test]
use_coverage = <bool>
FalseGenerate a coverage report if the test runner supports it.
Advanced options
xml_dir
--test-xml-dir=<DIR>PANTS_TEST_XML_DIR[test]
xml_dir = <DIR>
NoneSpecifying a directory causes Junit XML result files to be emitted under that dir for each test run that supports producing them.
Deprecated options
None
Related subsystems
None