1
0
mirror of https://github.com/openshift/openshift-docs.git synced 2026-02-05 21:46:22 +01:00
Files
openshift-docs/modules/serverless-testing-python-functions.adoc
2022-02-16 16:07:43 +00:00

35 lines
852 B
Plaintext

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