diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index e9fe349ea93f5abb4e30e39fbdcea9ee1dc81754..e6328c6ea07ce63db874a4dca995f94e1d6336de 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -24,7 +24,7 @@ stages:
   artifacts:
     paths:
       - report.xml
-      - htmlcov
+      - .coverage
     expire_in: 1 day
   script:
     - ./ci/test.py
diff --git a/ci/test.py b/ci/test.py
index 832897c2a90a5ecbf53adfd441c4df45cdc4d97f..b368ff9a778932f7a800482a77b66a4b55b03e15 100755
--- a/ci/test.py
+++ b/ci/test.py
@@ -53,7 +53,7 @@ if __name__ == "__main__":
             "-m",
             "pytest",
             "--junitxml=report.xml",
-            # "--cov=src",
-            # "--cov-report=html",
+            "--cov=src",
+            "--cov-report=",
         ]
     )
diff --git a/setup.py b/setup.py
index 7999f5ac38332788fb314af928b99b67c06040d7..3a6dad4b1f1245612f6d726bcf62240d28f5d61e 100644
--- a/setup.py
+++ b/setup.py
@@ -48,14 +48,7 @@ setup(
     version=source_version(),
     author="",
     author_email="",
-    install_requires=[
-        "h5py>=3",
-        "numpy",
-        "seaborn",
-        "pandas",
-        "deprecation",
-        "testbook",
-    ],
+    install_requires=["h5py>=3", "numpy", "seaborn", "pandas", "deprecation"],
     classifiers=[
         "Development Status :: 3 - Alpha",
         "Intended Audience :: Science/Research",