Recursive unittest discover
In doing a bit of digging, it seems that as long as deeper modules remain importable, they’ll be discovered via python -m unittest discover. The solution, then, was simply to add a __init__.py file to each directory to make them packages. . ├── LICENSE ├── models │ └── __init__.py ├── README.md ├── requirements.txt ├── tc.py … Read more