From 25a1486c5a73e736f9c496289bcfc4775701c254 Mon Sep 17 00:00:00 2001
From: Georg Krause <mail@georg-krause.net>
Date: Thu, 18 Aug 2022 09:54:48 +0200
Subject: [PATCH] Install poetry using the installer

---
 .gitlab-ci.yml | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index e49ba17..63c402c 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -13,7 +13,8 @@ tests:
       alias: db
   image: python:3.9-alpine3.15
   before_script:
-    - apk add python3-dev build-base poetry
+    - apk add python3-dev build-base curl
+    - curl -sSL https://install.python-poetry.org | python3 -
     - poetry install
   script:
     - poetry run pytest
-- 
GitLab