From 06f9a09bebed1ce325b0f140ff2736a1ba82c84b Mon Sep 17 00:00:00 2001
From: Oscar Gustafsson <oscar.gustafsson@gmail.com>
Date: Tue, 21 Jun 2022 16:03:32 +0200
Subject: [PATCH] Print coverage and add code quality

---
 .gitlab-ci.yml | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 90fa96d9..04c0650b 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -1,5 +1,8 @@
 image: python:3.6
 
+include:
+  - template: Code-Quality.gitlab-ci.yml
+
 stages:
  - test
 
@@ -13,7 +16,7 @@ before_script:
 run tests:
   stage: test
   script:
-    - pytest --cov=b_asic --cov-report xml:cov.xml test
+    - pytest --cov=b_asic --cov-report xml:cov.xml --cov-report term test
   artifacts:
       reports:
         coverage_report:
-- 
GitLab