Skip to content

Commit

Permalink
Test
Browse files Browse the repository at this point in the history
  • Loading branch information
vinnie4k committed Mar 26, 2024
1 parent 84a864b commit 9ff0387
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ jobs:
sudo apt-get update
sudo apt-get install libxml2-dev libxslt-dev
sudo apt-get install --yes --no-install-recommends postgresql-client
createdb uplift
pip install --force-reinstall pip==20.0.2
pip install --force-reinstall setuptools==44.0.0
pip freeze
Expand Down
1 change: 0 additions & 1 deletion src/database.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
db_port = os.environ.get("DB_PORT")

db_url = f"postgresql://{db_user}:{db_password}@{db_host}:{db_port}/{db_name}"
print(db_url)
engine = create_engine(db_url) # Soley for temp dev testing
db_session = scoped_session(sessionmaker(autocommit=False, autoflush=False, bind=engine))

Expand Down

0 comments on commit 9ff0387

Please sign in to comment.