Handy way to run Python 3 tests, until the ratchet is going.

This commit is contained in:
Itamar Turner-Trauring 2020-07-14 13:53:26 -04:00
parent 5fd01523cf
commit 3688291df2

View File

@ -33,3 +33,8 @@ PORTED_TEST_MODULES = [
"allmydata.test.test_humanreadable",
"allmydata.test.test_python3",
]
if __name__ == '__main__':
from subprocess import check_call
check_call(["trial"] + PORTED_TEST_MODULES)