diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index ea9b0cee2dee65ab38afec4bc36dead389a9f4be..8e92d353e3125d7910f6b627a12b69736df305fe 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -1,22 +1,20 @@
 stages:
   - build
-  - test
+#  - test
 
-job 0:
-  - stage: .pre
-  - script:
+build:
+  stage: build
+  before_script:
+    - echo "zzzzzz"
     - apt-get libc6-dev-i386
     - apt-get csh
     - python3 -m pip install PyQt5
+  script:
     - cd python; make rc
+  after_script:
+    - cd python; make check
 
-job 1:
-  - stage: build
-  - script:
-    - cd python; make rc
-
-job 2:
-  - stage: test
-    - script:
-      - cd python; make check
-
+#test:
+#  - stage: test
+#  - script:
+#    - cd python; make check