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.
debug_adapter
--[no-]test-debug-adapterPANTS_TEST_DEBUG_ADAPTER[test]
debug_adapter = <bool>
FalseRun tests sequentially in an interactive process, using a Debug Adapter (https://microsoft.github.io/debug-adapter-protocol/) for the language if supported.
The interactive process used will be immediately blocked waiting for a client before continuing.
This option implies --debug.
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.
shard
--test-shard=<str>PANTS_TEST_SHARD[test]
shard = <str>
A shard specification of the form "k/N", where N is a positive integer and k is a non-negative integer less than N.
If set, the request input targets will be deterministically partitioned into N disjoint subsets of roughly equal size, and only the k'th subset will be used, with all others discarded.
Useful for splitting large numbers of test files across multiple machines in CI. For example, you can run three shards with --shard=0/3, --shard=1/3, --shard=2/3.
Note that the shards are roughly equal in size as measured by number of files. No attempt is made to consider the size of different files, the time they have taken to run in the past, or other such sophisticated measures.
timeouts
--[no-]test-timeoutsPANTS_TEST_TIMEOUTS[test]
timeouts = <bool>
TrueEnable test target timeouts. If timeouts are enabled then test targets with a timeout= parameter set on their target will time out after the given number of seconds if not completed. If no timeout is set, then either the default timeout is used or no timeout is configured.
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
report
--[no-]test-reportPANTS_TEST_REPORT[test]
report = <bool>
FalseWrite test reports to --report-dir.
report_dir
--test-report-dir=<str>PANTS_TEST_REPORT_DIR[test]
report_dir = <str>
{distdir}/test/reportsPath to write test reports to. Must be relative to the build root.
timeout_default
--test-timeout-default=<int>PANTS_TEST_TIMEOUT_DEFAULT[test]
timeout_default = <int>
NoneThe default timeout (in seconds) for a test target if the timeout field is not set on the target.
timeout_maximum
--test-timeout-maximum=<int>PANTS_TEST_TIMEOUT_MAXIMUM[test]
timeout_maximum = <int>
NoneThe maximum timeout (in seconds) that may be used on a test target.
Deprecated options
None