diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index c6c3e43116019cef78112485caa390bb9d7a1700..e59e6e7707160cb69e3dac4d0cbca9f246b156f9 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -14,7 +14,8 @@ test-python:
   script:
   - apt-get update && apt install -y libblas-dev liblapack-dev python3-dev
   - pip install -r requirements.txt
-  - python setup.py test
+  - python -m unittest
+#  - python setup.py test
   parallel:
     matrix:
       - PYTHON_VERSION: [
diff --git a/setup.py b/setup.py
index 61bba8e85879dc9f5f6e8efca8c09667813475b9..429d78ca6b0b71aa135945aaa0ee477d0b1afe96 100644
--- a/setup.py
+++ b/setup.py
@@ -45,10 +45,6 @@ setup(
         'pytest-runner',
         'Flask-Testing'
     ],
-    tests_require=[
-        'pytest',
-        'Flask-Testing'
-    ],
     entry_points={
         'console_scripts': [
             'jass=jass.__main__:main',
diff --git a/test-requirements.txt b/test-requirements.txt
deleted file mode 100644
index 7f8d96e6b40e853d658f88fa745ddcf37ff7644c..0000000000000000000000000000000000000000
--- a/test-requirements.txt
+++ /dev/null
@@ -1,6 +0,0 @@
-flask_testing==0.6.1
-coverage>=4.0.3
-nose>=1.3.7
-pluggy>=0.3.1
-py>=1.4.31
-randomize>=0.13