anyway to specify a default for test like ```./pan...
# general
p
anyway to specify a default for test like
Copy code
./pants --changed-since=HEAD test
but default to changed-since
c
There’s cli aliases.. so you can do:
Copy code
./pants test-head ...
with this in
pants.toml
Copy code
[cli.alias]
test-head = "--changed-since=HEAD test"