Explain the purpose of the "tests" conditional dependency requirement (#7751)
This commit is contained in:
parent
831b31e563
commit
2f6afdd8b4
|
@ -0,0 +1 @@
|
|||
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"],
|
||||
|
|
Loading…
Reference in New Issue