From 4b6dbb34d5d592f0ba2e0904129933d462184d0a Mon Sep 17 00:00:00 2001 From: Martin Mahner Date: Fri, 2 Dec 2016 13:38:13 +0100 Subject: [PATCH] Use Postgres for testing. --- dpaste/settings/local.py.example | 4 ++-- requirements.txt | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/dpaste/settings/local.py.example b/dpaste/settings/local.py.example index 5c5ffcf..00716ba 100644 --- a/dpaste/settings/local.py.example +++ b/dpaste/settings/local.py.example @@ -9,9 +9,9 @@ MANAGERS = ADMINS DATABASES = { 'default': { - 'ENGINE': 'django.db.backends.mysql', + 'ENGINE': 'django.db.backends.postgresql', 'NAME': 'dpaste', - 'USER': 'root', + 'USER': '', 'PASSWORD': '', } } diff --git a/requirements.txt b/requirements.txt index 7e459fc..23a92a3 100644 --- a/requirements.txt +++ b/requirements.txt @@ -19,4 +19,4 @@ sphinx_rtd_theme # Deployment specific gunicorn -mysql-python +psycopg2