【发布时间】:2019-06-02 21:31:57
【问题描述】:
我正在gitlab-ci.yml 文件中设置测试阶段,但在为 postgresql 数据库配置 postgis 扩展时出现错误。
我需要 DATABASE_URL,例如 postgis://... 用于我的 Django 环境
我的最新版gitlab-ci.yml:
image: python:3.6
services:
- postgres:9.6
variables:
POSTGRES_DB: test_db
POSTGRES_USER: test_user
POSTGRES_PASSWORD: test_pass
DATABASE_URL: "postgis://test_user:test_pass@postgres:5432/test_db"
stages:
- test
- build
test:
stage: test
script:
- apt-get update -qy
- apt-get -y install binutils libproj-dev gdal-bin postgis*
- pip3 install pipenv
- pipenv install --dev
- export DATABASE_URL=$DATABASE_URL
- pipenv run test
Gitlab Pipeline 错误响应:
Running with gitlab-runner 11.5.0 (3afdaba6)
on docker-auto-scale fa6cab46
Using Docker executor with image python:3.6 ...
Starting service postgres:9.6 ...
Pulling docker image postgres:9.6 ...
$ export DATABASE_URL=$DATABASE_URL
$ pipenv run test
/root/.local/share/virtualenvs/pixel-api-yo4gnz48/lib/python3.6/site-packages/psycopg2/__init__.py:144: UserWarning: The psycopg2 wheel package will be renamed from release 2.8; in order to keep installing from binary please use "pip install psycopg2-binary" instead. For details see: <http://initd.org/psycopg/docs/install.html#binary-install-from-pypi>.
""")
Creating test database for alias 'default'...
Traceback (most recent call last):
File "/root/.local/share/virtualenvs/pixel-api-yo4gnz48/lib/python3.6/site-packages/django/db/backends/utils.py", line 83, in _execute
return self.cursor.execute(sql)
psycopg2.OperationalError: could not open extension control file "/usr/share/postgresql/9.6/extension/postgis.control": No such file or directory
django.db.utils.OperationalError: could not open extension control file "/usr/share/postgresql/9.6/extension/postgis.control": No such file or directory
【问题讨论】:
-
为什么你认为你需要一个以
postgis://...开头的URI?它只是 pg 的扩展而不是单独的协议。 -
@JakubKania 因为我使用 dj-database-url 库来加载 DATABASE_URL
标签: python django postgresql postgis gitlab-ci