aboutsummaryrefslogtreecommitdiffstats
path: root/azure-pipelines.yml
diff options
context:
space:
mode:
Diffstat (limited to 'azure-pipelines.yml')
-rw-r--r--azure-pipelines.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/azure-pipelines.yml b/azure-pipelines.yml
index e85608a1..1e6d67f0 100644
--- a/azure-pipelines.yml
+++ b/azure-pipelines.yml
@@ -93,7 +93,7 @@ jobs:
echo "CREATE DATABASE pysite OWNER pysite;" >> pgscript.sql
sudo su postgres -c "psql < pgscript.sql"
env:
- USER_CREATE_COMMAND: CREATE USER pysite WITH PASSWORD 'pysite' CREATEDB
+ USER_CREATE_COMMAND: CREATE USER pydis_site WITH PASSWORD 'pydis_site' CREATEDB
displayName: set up the database
- script: python -m pip install pipenv && python -m pipenv install --dev --system
@@ -104,7 +104,7 @@ jobs:
coverage run --branch manage.py test --testrunner xmlrunner.extra.djangotestrunner.XMLTestRunner --no-input
env:
CI: azure
- DATABASE_URL: postgres://pysite:pysite@localhost/pysite
+ DATABASE_URL: postgres://pydis_site:pydis_site@localhost/pydis_site
displayName: run tests
- script: coverage report