I've been writing unit tests for my app, which uses braintree and braintree_python for billing. The module is installed using pip.
For some of my unit tests, I need to have a transaction's status transition from 'submitted_for_settlement' to 'settled', which, in the sandbox, takes too long for a quick unit test.
From the Docs, and other Questions (1, 2), I gather this can be done using TestHelper.
Problem is, while TestHelper seems to exist in the braintree/braintree_python repo, I cannot figure out how to import it.
Is there a way to import TestHelper and use it in my unit tests?