diff --git a/requirements/requirements-all.txt b/requirements/requirements-all.txt index a124ecf..1b017dd 100644 --- a/requirements/requirements-all.txt +++ b/requirements/requirements-all.txt @@ -1,3 +1,4 @@ yacman>=0.9.1 pipestat[db-backend]==0.6.0a9 geniml>=0.0.1 +psycopg>=3.1.15 \ No newline at end of file diff --git a/tests/test_bbconf.py b/tests/test_bbconf.py index f66dfed..c18d2bb 100644 --- a/tests/test_bbconf.py +++ b/tests/test_bbconf.py @@ -13,7 +13,7 @@ from bbconf.exceptions import MissingConfigDataError -DB_URL = "postgresql+psycopg2://postgres:dockerpassword@127.0.0.1:5432/pipestat-test" +DB_URL = "postgresql+psycopg://postgres:dockerpassword@127.0.0.1:5432/pipestat-test" DATA_PATH = os.path.join(os.path.dirname(os.path.abspath(__file__)), "data") pytest_db_skip_reason = "Database is not set up... To run this test, set up the database. Go to test/README.md for more information."