mirror of
https://git.anonymousland.org/anonymousland/synapse-product.git
synced 2024-10-01 08:25:44 -04:00
Explain the purpose of the "tests" conditional dependency requirement (#7751)
This commit is contained in:
parent
831b31e563
commit
2f6afdd8b4
1
changelog.d/7751.misc
Normal file
1
changelog.d/7751.misc
Normal file
@ -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"],
|
"oidc": ["authlib>=0.14.0"],
|
||||||
"systemd": ["systemd-python>=231"],
|
"systemd": ["systemd-python>=231"],
|
||||||
"url_preview": ["lxml>=3.5.0"],
|
"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
|
# parameterized_class decorator was introduced in parameterized 0.7.0
|
||||||
"test": ["mock>=2.0", "parameterized>=0.7.0"],
|
"test": ["mock>=2.0", "parameterized>=0.7.0"],
|
||||||
"sentry": ["sentry-sdk>=0.7.2"],
|
"sentry": ["sentry-sdk>=0.7.2"],
|
||||||
|
Loading…
Reference in New Issue
Block a user