无法在Python / Django应用程序上运行测试

时间:2018-05-18 18:14:07

标签: python django

我已经授予用户“创建B'。

但是当我使用python manage.py test

运行测试时

我收到了这个错误,

Creating test database for alias 'default'... Got an error creating
the test database: permission denied to create database

这是我的settings.py

DATABASES = {
    'default': {
        'ENGINE': 'django.db.backends.postgresql_psycopg2',
        'NAME': 'my_db',
        'USER': 'my_admin',
        'PASSWORD': '',
        'HOST': 'localhost',
        'PORT': '',
        'TEST' : {
            'NAME': 'test_my_db'
        }
    } }

0 个答案:

没有答案