summaryrefslogtreecommitdiff
path: root/tests/test_asyncio/test_bloom.py
Commit message (Collapse)AuthorAgeFilesLines
* Add support to BF.CARD (#2545)shacharPash2023-01-111-0/+15
| | | | | | | * Add support to BF.CARD * Add Async test * change to with pytest.raises
* Fixing bloom tests (#2430)Chayim2022-10-251-3/+3
|
* remove tdigest.add weights (#2408)dvora-h2022-10-061-18/+18
|
* Add support for new TDIGEST features and changes (#2392)dvora-h2022-09-211-21/+78
| | | | | | | | | | | * Add support to TDIGEST * linters * linters * linters * disable View Test Results in CI
* Mark `TOPK.COUNT` as deprecated (#2363)dvora-h2022-09-041-6/+8
| | | | | * deprecate * linters
* Fix GRAPH.LIST & TDIGEST.QUANTILE tests (#2335)dvora-h2022-08-141-5/+5
| | | | | | | | | * fix graph list_keys test * async test * fix tdigest.quantile * fix
* Support TDIGEST.MERGESTORE and make compression optional on TDIGEST.CREATE ↵dvora-h2022-08-021-0/+13
| | | | | | | | | | | (#2319) * support 2.4 * async test * skip tests * linters
* Add support for `TDIGEST.QUANTILE` extensions (#2317)dvora-h2022-08-021-9/+19
| | | | | | | | | * Add support for TDIGEST.QUANTILE extensions * linters * linters & utils * Update test_bloom.py
* Drop python 3.6 support (#2306)dvora-h2022-07-271-5/+0
|
* Fix warnings and resource usage problems in asyncio unittests (#2258)Kristján Valur Jónsson2022-07-261-3/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Use pytest-asyncio in auto mode Remove overly genereric `pytestmark=pytest.mark.asyncio` causing lots of warning noise * Use "Factories as Fixtures" test pattern for the `create_redis` fixture this fixture is now async, avoiding teardown problems with missing event loops. * Fix sporadic error on fast event loops, such as `--uvloop` * Close connection, even if "username" was in kwargs This fixes a resource usage warning in the async unittests. * Do async cleanup of acl passwords via a fixture * Remove unused import, fix whitespace * Fix test with missing "await" * Close pubsub objects after use in unittest Use a simple fixture where possible, otherwise manually call pubsub.close() * re-introduce `pytestmark=pytest.mark.asyncio` for python 3.6 * Use context manager to clean up connections in connection pool for unit tests * Provide asynccontextmanager for python 3.6 * make `test_late_subscribe()` more robuste * Catch a couple of additional leaked resources
* Async tests for redis commands, json, bloom, timeseries (#2087)dvora-h2022-04-071-0/+402
* test async commands * test async json commands * test async timeseries commands * test async bloom commands * linters * linters * skip on cluster * linters * linters * isort * flynt * remove print