From 261a8e86a8bae449b582eda619620f8a1a4c4377 Mon Sep 17 00:00:00 2001 From: Turall Date: Sat, 26 Jun 2021 12:42:58 +0400 Subject: [PATCH] update dev requiremenets --- tests/conftest.py | 3 +++ tests/dev.requirements.txt | 1 + tests/implementations/gino_.py | 4 ++-- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/tests/conftest.py b/tests/conftest.py index 0582d44..0c9b0d8 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -33,6 +33,7 @@ def client(request): sqlalchemy_implementation_custom_ids, databases_implementation_custom_ids, ormar_implementation_custom_ids, + gino_implementation_custom_ids, ] ) def custom_id_client(request): @@ -44,6 +45,7 @@ def custom_id_client(request): sqlalchemy_implementation_string_pk, databases_implementation_string_pk, ormar_implementation_string_pk, + gino_implementation_string_pk, ], scope="function", ) @@ -55,6 +57,7 @@ def string_pk_client(request): params=[ sqlalchemy_implementation_integrity_errors, ormar_implementation_integrity_errors, + gino_implementation_integrity_errors, ], scope="function", ) diff --git a/tests/dev.requirements.txt b/tests/dev.requirements.txt index c2b285b..082b230 100644 --- a/tests/dev.requirements.txt +++ b/tests/dev.requirements.txt @@ -9,6 +9,7 @@ databases aiosqlite sqlalchemy==1.3.22 sqlalchemy_utils==0.36.8 +gino-starlette==0.1.1 # Testing pytest diff --git a/tests/implementations/gino_.py b/tests/implementations/gino_.py index a7cc7fb..45b0b7f 100644 --- a/tests/implementations/gino_.py +++ b/tests/implementations/gino_.py @@ -14,8 +14,8 @@ PotatoType, ) -GINO_DATABASE_URL = "asyncpg://postgres:postgres@127.0.0.1/testdb" -SQLALCHEMY_DATABASE_URL = "postgresql://postgres:postgres@127.0.0.1/testdb" +GINO_DATABASE_URL = "asyncpg://postgres:12bizimki@127.0.0.1/testdb" +SQLALCHEMY_DATABASE_URL = "postgresql://postgres:12bizimki@127.0.0.1/testdb" async def migrate(db):