Skip to content

Commit

Permalink
update dev requiremenets
Browse files Browse the repository at this point in the history
  • Loading branch information
turalpb committed Jun 26, 2021
1 parent 8570e58 commit 261a8e8
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
3 changes: 3 additions & 0 deletions tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand All @@ -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",
)
Expand All @@ -55,6 +57,7 @@ def string_pk_client(request):
params=[
sqlalchemy_implementation_integrity_errors,
ormar_implementation_integrity_errors,
gino_implementation_integrity_errors,
],
scope="function",
)
Expand Down
1 change: 1 addition & 0 deletions tests/dev.requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ databases
aiosqlite
sqlalchemy==1.3.22
sqlalchemy_utils==0.36.8
gino-starlette==0.1.1

# Testing
pytest
Expand Down
4 changes: 2 additions & 2 deletions tests/implementations/gino_.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down

0 comments on commit 261a8e8

Please sign in to comment.