Project Structure
components/
    A.py
    B.py
run_test.py
A.py and B.py each has some functions with doctest test cases.
How can I run all tests in A.py and B.py by running only run_test.py?
Any other approach to achieve "Run all tests in A.py and B.py` will be appreciated too.
