浏览代码

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 年之前
父节点
当前提交
0af99e6af7
共有 1 个文件被更改,包括 6 次插入14 次删除
  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: