diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index c520a1695280c1761888baab17feb03c73e52010..313ca72cada130430ba5a26487b5390d096eef24 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -21,9 +21,8 @@ before_script:
 
 test:
   script:
-    - pip install tox  # you can also use tox
+    - pip install pytest tox  # you can also use tox
     - pip install --editable ".[test]"
-    - python -c "import combo"
     - python -m tox -e py
 
 
diff --git a/tox.ini b/tox.ini
index bf08cc4745aafa36f9987c91488232a5c7ed503d..a20a46635ddd3d6f66471317f746a817aa3a175f 100644
--- a/tox.ini
+++ b/tox.ini
@@ -2,5 +2,4 @@
 envlist = py
 
 [testenv]
-deps = pytest
 commands = pytest {posargs}
\ No newline at end of file