<#13392 Logically ordered output in `./pants tailo...
# github-notifications
c
#13392 Logically ordered output in `./pants tailor` Issue created by joshua-cannon-techlabs Is your feature request related to a problem? Please describe. I'm not sure if there's consistency in my
./pants tailor
output w.r.t. the ordering of
python_library()
vs.
python_tests()
vs
pex_binary()
. What I mean is in some files it might be
python_tests
followed by
python_library
followed by
pex_binary
, or it might be (shortened)
_bin
, _bin`,
_lib
,
_bin
, _test`. (I suspect these are ordered by the underlying
name
, but I may be wrong) Describe the solution you'd like I think more logically as a user, there is a natural ordering to these things. Tests are likely to be at the bottom, perhaps with library directly above it, with binaries at the top (where the user starts reading?) Describe alternatives you've considered N/A Additional context N/A pantsbuild/pants