What we did was adopt a convention to name our fil...
# general
h
What we did was adopt a convention to name our files something like
my_test_manual.py
which avoids it being caught by the filters of
python_tests
. Then, we had a section like
Copy code
if __name__ == '__main__':
   unittest.main()
and used the
pex_binary
that
tailor
adds to run the tests.
👍 1