소스 검색

reduce testing on travis, no macOS, no py3x-dev, see #5467

- kill the macOS builds, way too expensive (and problematic anyway)
- kill the builds on python development versions, can't afford any more
Thomas Waldmann 4 년 전
부모
커밋
94f5e1824a
1개의 변경된 파일1개의 추가작업 그리고 11개의 파일을 삭제
  1. 1 11
      .travis.yml

+ 1 - 11
.travis.yml

@@ -23,7 +23,7 @@ matrix:
           os: linux
           dist: focal
           env: TOXENV=py38
-        - python: "3.9-dev"
+        - python: "3.9"
           os: linux
           dist: focal
           env: TOXENV=py39
@@ -31,16 +31,6 @@ matrix:
           os: linux
           dist: focal
           env: TOXENV=flake8
-        - language: generic
-          os: osx
-          osx_image: xcode8.3  # This is the latest working xcode image with osxfuse compatibility; later images come with an OS X version which doesn't allow kernel extensions
-          env: TOXENV=py35
-        - language: generic
-          os: osx
-          osx_image: xcode11.3
-          env: TOXENV=py37 SKIPFUSE=true
-    allow_failures:
-         - os: osx  # OS X builds often take too long and time out, even though tests don't actually fail
 
 before_install: # Abort installation and don't run tests for pull requests if commit only changed the docs
 - |