// Module included in the following assemblies // // * /serverless/functions/serverless-developing-python-functions.adoc [id="serverless-testing-python-functions_{context}"] = Testing Python functions Python functions can be tested locally on your computer. The default project contains a `test_func.py` file, which provides a simple unit test for functions. .Prerequisites * To run Python functions tests locally, you must install the required dependencies: + [source,terminal] ---- $ pip install -r requirements.txt ---- .Procedure . After you have installed the dependencies, run the tests: + [source,terminal] ---- $ python3 test_func.py ---- [NOTE] ==== The default test framework for Python functions is `unittest`. You can use a different test framework if you prefer. ====