Pytest

import pytest
# also import functions that you want to test
# execute by
pytest test_file_name.py
-s # allows for print statements to work

Explanation

External