experimental_test_shell_command¶
Run a script as a test via the test
goal, with all dependencies packaged/copied available in the chroot.
Example BUILD file:
experimental_test_shell_command(
name="test",
tools=["test"],
command="test -r $CHROOT/some-data-file.txt",
execution_dependencies=["src/project/files:data"],
)
The command
may use either {chroot}
on the command line, or the $CHROOT
environment variable to get the root directory for where any dependencies are located.
In contrast to the run_shell_command
, this target is intended to run shell commands as tests and will only run them via the test
goal.
Backend: pants.backend.shell
tags
¶
type: Iterable[str] | None
default: None
Arbitrary strings to describe a target.
For example, you may tag some test targets with 'integration_test' so that you could run pants --tag='integration_test' test ::
to only run on targets with that tag.
description
¶
type: str | None
default: None
A human-readable description of the target.
Use pants list --documented ::
to see all targets with descriptions.
execution_dependencies
¶
type: Iterable[str] | None
default: None
The execution dependencies for this command.
Dependencies specified here are those required to make the command complete successfully (e.g. file inputs, packages compiled from other targets, etc), but NOT required to make the outputs of the command useful. Dependencies that are required to use the outputs produced by this command should be specified using the output_dependencies
field.
If this field is specified, dependencies from output_dependencies
will not be added to the execution sandbox.
See also output_dependencies
and runnable_dependencies
.
command
¶
type: str
required
Shell command to execute.
The command is executed as 'bash -c <command>'
by default. If you want to invoke a binary use exec -a $0 <binary> <args>
as the command so that the binary gets the correct argv[0]
set.
log_output
¶
type: bool
default: False
Set to true if you want the output logged to the console.
timeout
¶
type: int | None
default: 30
Command execution timeout (in seconds).
tools
¶
type: Iterable[str] | None
default: ()
Specify required executable tools that might be used.
Only the tools explicitly provided will be available on the search PATH, and these tools must be found on the paths provided by [shell-setup].executable_search_paths
(which defaults to the system PATH).
extra_env_vars
¶
type: Iterable[str] | None
default: None
Additional environment variables to provide to the process.
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.
environment
¶
type: str | None
default: '__local__'
Specify which environment target to consume environment-sensitive options from.
Once environments are defined in [environments-preview].names
, you can specify the environment for this target by its name. Any fields that are defined in that environment will override the values from options set by pants.toml
, command line values, or environment variables.
You can specify multiple valid environments by using parametrize
. If __local__
is specified, Pants will fall back to the local_environment
defined for the current platform, or no environment if no such environment exists.
skip_tests
¶
type: bool
default: False
If true, don't run this tests for target.
workdir
¶
type: str | None
default: '.'
Sets the working directory for the process.
Values are relative to the build root, except in the following cases:
.
specifies the location of the BUILD
file.
Values beginning with ./
are relative to the location of the BUILD
file.
/
or the empty string specifies the build root.
Values beginning with /
are also relative to the build root.