Fix Travis config to reinstate test build (GH-1879)
authorHiro Asari <asari.ruby@gmail.com>
Wed, 31 May 2017 22:34:00 +0000 (18:34 -0400)
committerBrett Cannon <brettcannon@users.noreply.github.com>
Wed, 31 May 2017 22:34:00 +0000 (15:34 -0700)
.travis.yml

index 335fd9fd3d3bfcd05907880ab21c1dd4dcc71644..f3ecd044aaf5a4c752382556b67d404b16ae96a1 100644 (file)
@@ -11,25 +11,19 @@ branches:
     - master
     - /^\d\.\d$/
 
-os:
-  - linux
-  # macOS builds are disabled as the machines are under-provisioned on Travis,
-  # adding up to an extra hour completing a full CI run.
-
-compiler:
-  - clang
-  # gcc also works, but to keep the # of concurrent builds down, we use one C
-  # compiler here and the other to run the coverage build.
-
-env:
-  - TESTING=cpython
-
 matrix:
   fast_finish: true
   allow_failures:
     - env:
        - TESTING=coverage
   include:
+    - os: linux
+      language: c
+      compiler: clang
+      # gcc also works, but to keep the # of concurrent builds down, we use one C
+      # compiler here and the other to run the coverage build.
+      env:
+        - TESTING=cpython
     - os: linux
       language: python
       # Build the docs against a stable version of Python so code bugs don't hold up doc-related PRs.