in the `python_binary` call in `main/BUILD` , righ...
# development
h
in the
python_binary
call in
main/BUILD
, right?
h
yep
but why use this binary? You can run anything from
build-support/bin
, like
check_inits.py
h
no particular reason other than it's in the
examples
directory. but it was surprising to me that pants couldn't run it
h
we want to delete those
examples
. they’re stale and have a weird coupling with tests
h
./pants run examples/src/python/example/hello/main:main
fails with an exception after adding that line
ah okay, if we want to delete them then it doesn't matter
h
yeah, they’re tech debt
h
any reason we can't put together a commit right nowthat removes the
examples
directory?
h
yes, it means updating all our integration tests to instead create the tests in memory using
setup_tmpdir
. Doable, but takes some time
h
so just something we haven't gotten to yet
h
yeah