WIP on async - test failure due to closed event loop

This commit is contained in:
Andrew Brookins 2021-10-22 06:33:05 -07:00
parent 0f9f7aa868
commit b2c2dd9f6f
22 changed files with 348 additions and 190 deletions

View file

@ -1,9 +1,10 @@
[tool.poetry]
name = "redis-developer"
name = "redis-om"
version = "0.1.0"
description = "A high-level library containing useful Redis abstractions and tools, like an ORM and leaderboard."
authors = ["Andrew Brookins <andrew.brookins@redislabs.com>"]
license = "MIT"
build = "build.py"
[tool.poetry.dependencies]
python = "^3.8"
@ -30,10 +31,11 @@ bandit = "^1.7.0"
coverage = "^6.0.2"
pytest-cov = "^3.0.0"
pytest-xdist = "^2.4.0"
unasync = "^0.5.0"
pytest-asyncio = "^0.16.0"
[tool.poetry.scripts]
migrate = "redis_developer.orm.cli.migrate:migrate"
migrate = "redis_om.orm.cli.migrate:migrate"
[build-system]
requires = ["poetry-core>=1.0.0"]