diff options
author | David Robertson <davidr@element.io> | 2022-03-14 18:39:14 +0000 |
---|---|---|
committer | David Robertson <davidr@element.io> | 2022-03-14 18:41:58 +0000 |
commit | c8faad496e71dfac108fb152e793ac8a305f2534 (patch) | |
tree | c6c9c6c4cfcd24b50fba1283906ce16bfc056573 /pyproject.toml | |
parent | And try to fix `export-data` (diff) | |
download | synapse-c8faad496e71dfac108fb152e793ac8a305f2534.tar.xz |
Include `test` extra
I thought we might be able to get away without this and make it a dev dependency only. But in olddeps it's easier to have this (otherwise I have to worry about version conflicts between dev deps and the normal deps). lock the test extra
Diffstat (limited to 'pyproject.toml')
-rw-r--r-- | pyproject.toml | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/pyproject.toml b/pyproject.toml index 2bfa3d1036..76ec58ef33 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -170,6 +170,7 @@ pyjwt = { version = ">=1.6.4", optional = true } txredisapi = { version = ">=1.4.7", optional = true } hiredis = { version = "*", optional = true } Pympler = { version = "*", optional = true } +parameterized = { version = ">=0.7.0", optional = true } ## Developer dependencies should not get included in "all". ## @@ -193,6 +194,7 @@ jwt = ["pyjwt"] redis = ["txredisapi", "hiredis"] # Required to use experimental `caches.track_memory_usage` config option. cache_memory = ["pympler"] +test = ["parameterized"] # The duplication here is awful. I hate hate hate hate hate it. However, for now I want # to ensure you can still `pip install matrix-synapse[all]` like today. Two motivations: @@ -226,6 +228,7 @@ all = [ #redis "txredisapi", "hiredis" # cache_memory, omitted: this is an experimental option + # test, omitted: it's useful to have this separate from dev deps in the olddeps job ] [tool.poetry.dev-dependencies] |