1
1
Prechádzať zdrojové kódy

Merge branch '155-disable-python-3-6-and-python-3-10' into 'master'

Resolve "disable python 3.6 and python 3.10"

Closes #155

See merge request troebs/pycs!149
Dimitri Korsch 3 rokov pred
rodič
commit
0af99e6af7
1 zmenil súbory, kde vykonal 6 pridanie a 14 odobranie
  1. 6 14
      .gitlab-ci.yml

+ 6 - 14
.gitlab-ci.yml

@@ -41,13 +41,6 @@ webui:
     - make run_coverage
     - make run_pylint
 
-tests_3.6:
-  stage: test
-  image: python:3.6
-  only:
-    - master
-  <<: *python_test_definition
-
 tests_3.7:
   stage: test
   image: python:3.7
@@ -67,13 +60,12 @@ tests_3.9:
   image: python:3.9
   <<: *python_test_definition
 
-tests_3.10:
-  stage: test
-  image: python:3.10-rc
-  allow_failure: true
-  only:
-    - master
-  <<: *python_test_definition
+# tests_3.10:
+#   stage: test
+#   image: python:3.10
+#   only:
+#     - master
+#   <<: *python_test_definition
 
 
 bundle: