From 1e2afa843725df3cd614944371a6bf8ab367fad6 Mon Sep 17 00:00:00 2001
From: Dominik George <nik@naturalnet.de>
Date: Sun, 8 Dec 2019 00:13:46 +0100
Subject: [PATCH] Do not use sudo in CI.

---
 .gitlab-ci.yml | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 5d8d0e1..e33a0f8 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -1,8 +1,7 @@
 test:
   image: python:3.8-buster
   before_script:
-    - sudo apt-get update -qq
-    - sudo apt-get install -qq yarnpkg
+    - apt-get update -y -qq && apt-get install -y -qq yarnpkg
     - pip install -q Django
     - pip install .
     - pip install -r requirements_dev.txt
-- 
GitLab