From 08c033fef3ec80327d7de6ce67916033d84692e7 Mon Sep 17 00:00:00 2001 From: Georg Krause <mail@georg-krause.net> Date: Thu, 18 Aug 2022 13:48:13 +0200 Subject: [PATCH] Install correct package for pg_config --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 13022bd..2d0de21 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -13,7 +13,7 @@ tests: alias: db image: python:3.9-alpine3.15 before_script: - - apk add python3-dev build-base curl postgresql-libs + - apk add python3-dev build-base curl libpq-dev - curl -sSL https://install.python-poetry.org | python3 - - export PATH="/root/.local/bin:$PATH" - poetry install -- GitLab