From 644927aee499253e1a995fa5b49832f76918634d Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Florian=20Schr=C3=B6der?=
 <fschroeder@techfak.uni-bielefeld.de>
Date: Thu, 29 Feb 2024 10:53:57 +0100
Subject: [PATCH] Update .gitlab-ci.yml and README.md

The .gitlab-ci.yml file is modified to limit pytest to only 'main' and '65-more-test-coverage' branches. In the README.md, the pipeline and coverage badge URLs have been updated to dynamically reflect the current branch.
---
 .gitlab-ci.yml | 3 +++
 README.md      | 4 ++--
 2 files changed, 5 insertions(+), 2 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 2113b02f..65827650 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -1,5 +1,8 @@
 pytest:
   stage: test
+  only:
+    - main
+    - 65-more-test-coverage
   script:
     - apt-get update -qy
     - apt-get install -y python3-dev python3-pip graphviz graphviz-dev
diff --git a/README.md b/README.md
index 9c17505c..96411e35 100644
--- a/README.md
+++ b/README.md
@@ -1,5 +1,5 @@
-![pipeline](https://gitlab.ub.uni-bielefeld.de/<namespace>/<project>/badges/<branch>/pipeline.svg)
-![coverage](https://gitlab.ub.uni-bielefeld.de/<namespace>/<project>/badges/<branch>/coverage.svg)
+![pipeline](https://gitlab.ub.uni-bielefeld.de/scs/cocosy/overcooked-simulator/badges/%{current_branch}/pipeline.svg)
+![coverage](https://gitlab.ub.uni-bielefeld.de/scs/cocosy/overcooked-simulator/badges/%{cuurent_branch}/coverage.svg)
 
 # Cooperative Cuisine Environment
 
-- 
GitLab