This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import pytest | |
from models import Base | |
from pytest_postgresql import factories | |
from sqlalchemy import create_engine, text | |
from sqlalchemy.orm import sessionmaker, scoped_session | |
from sqlalchemy.pool import NullPool | |
from sqlalchemy_utils import database_exists, create_database | |
user = "postgres" |