File tree Expand file tree Collapse file tree 3 files changed +44
-7
lines changed Expand file tree Collapse file tree 3 files changed +44
-7
lines changed Original file line number Diff line number Diff line change @@ -62,14 +62,14 @@ format: $(INSTALL_STAMP) sync
62
62
63
63
.PHONY : test
64
64
test : $(INSTALL_STAMP ) sync
65
- $(POETRY ) run pytest -n auto -vv ./tests/ ./tests_sync/ --cov-report term-missing --cov $(NAME ) $(SYNC_NAME )
65
+ REDIS_OM_URL= " redis://localhost:6380?decode_responses=True " $(POETRY ) run pytest -n auto -vv ./tests/ ./tests_sync/ --cov-report term-missing --cov $(NAME ) $(SYNC_NAME )
66
66
67
67
.PHONY : test_oss
68
68
test_oss : $(INSTALL_STAMP ) sync
69
69
# Specifically tests against a local OSS Redis instance via
70
70
# docker-compose.yml. Do not use this for CI testing, where we should
71
71
# instead have a matrix of Docker images.
72
- REDIS_OM_URL=" redis://localhost:6381" $(POETRY ) run pytest -n auto -vv ./tests/ ./tests_sync/ --cov-report term-missing --cov $(NAME )
72
+ REDIS_OM_URL=" redis://localhost:6381?decode_responses=True " $(POETRY ) run pytest -n auto -vv ./tests/ ./tests_sync/ --cov-report term-missing --cov $(NAME )
73
73
74
74
75
75
.PHONY : shell
Original file line number Diff line number Diff line change @@ -8,7 +8,6 @@ license = "BSD-3-Clause"
8
8
readme = " README.md"
9
9
repository = " https://github.com/redis-developer/redis-om-python"
10
10
packages = [
11
- { "include" = " aredis_om" },
12
11
{ "include" = " redis_om" },
13
12
]
14
13
classifiers = [
@@ -34,6 +33,7 @@ types-redis = "^3.5.9"
34
33
types-six = " ^1.16.1"
35
34
python-ulid = " ^1.0.3"
36
35
python-dotenv = " ^0.19.1"
36
+ cleo = " 1.0.0a4"
37
37
38
38
[tool .poetry .dev-dependencies ]
39
39
mypy = " ^0.910"
You can’t perform that action at this time.
0 commit comments