Skip to content
Snippets Groups Projects
Unverified Commit 2f6afdd8 authored by Andrew Morgan's avatar Andrew Morgan Committed by GitHub
Browse files

Explain the purpose of the "tests" conditional dependency requirement (#7751)

parent 831b31e5
No related branches found
No related tags found
No related merge requests found
Explain the "test" conditional requirement for dependencies is not all of the modules necessary to run the unit tests.
......@@ -93,6 +93,10 @@ CONDITIONAL_REQUIREMENTS = {
"oidc": ["authlib>=0.14.0"],
"systemd": ["systemd-python>=231"],
"url_preview": ["lxml>=3.5.0"],
# Dependencies which are exclusively required by unit test code. This is
# NOT a list of all modules that are necessary to run the unit tests.
# Tests assume that all optional dependencies are installed.
#
# parameterized_class decorator was introduced in parameterized 0.7.0
"test": ["mock>=2.0", "parameterized>=0.7.0"],
"sentry": ["sentry-sdk>=0.7.2"],
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment