Does Docker execution work on `experimental_test_s...
# development
b
Does Docker execution work on
experimental_test_shell_command
? In Pants repo,
BUILD
Copy code
experimental_test_shell_command(
    name="test-bind-mount",
    tools=["test", "cat"],
    command="cat /etc/os-release && test -f /.aws/config",
    environment="docker"
)
yields:
Copy code
11:23:06.27 [ERROR] Completed: Test with shell command - //:test-bind-mount - failed (exit code 1).
NAME="Ubuntu"
VERSION="20.04.6 LTS (Focal Fossa)"
...
Gicing the same treatment to a
python_test
DOES run in the environment 😮