From e1275e63ba33c94b18234e95fb4d986f66582fd0 Mon Sep 17 00:00:00 2001
From: Oscar Gustafsson <oscar.gustafsson@gmail.com>
Date: Tue, 17 Jan 2023 16:55:05 +0100
Subject: [PATCH] Do not run tests in parallel

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

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 9ec94e4c..c4e0cbb2 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -14,7 +14,7 @@ before_script:
 .run-test:
   stage: test
   script:
-    - pytest --cov=b_asic --cov-report xml:cov.xml --cov-report term test -n auto -v
+    - pytest --cov=b_asic --cov-report xml:cov.xml --cov-report term test
     - sphinx-build -b html docs_sphinx public
   artifacts:
       reports:
-- 
GitLab