diff options
author | Brett Cannon <brettcannon@users.noreply.github.com> | 2017-03-19 17:03:39 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-03-19 17:03:39 (GMT) |
commit | b044120f048571030552eefab8ba2329a9e76ceb (patch) | |
tree | f5c29478a49dd1fa8f1fff36f9d1db3363da5546 /.travis.yml | |
parent | 49fc153342f98e0d4ae5a96b88f3e91e4c5861d7 (diff) | |
download | cpython-b044120f048571030552eefab8ba2329a9e76ceb.zip cpython-b044120f048571030552eefab8ba2329a9e76ceb.tar.gz cpython-b044120f048571030552eefab8ba2329a9e76ceb.tar.bz2 |
Drop C++ header compatibility test (#718) (#719)
The $CXX environment variable is not exported under the 'c' language on Travis.
(cherry picked from commit 77ed11552da3e01dd235b7d68988076866b1f604)
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml index 36961e3..66f03dc 100644 --- a/.travis.yml +++ b/.travis.yml @@ -79,8 +79,6 @@ before_script: script: # `-r -w` implicitly provided through `make buildbottest`. - make buildbottest TESTOPTS="-j4" - # Test for C++ header compatibility. - - echo '#include "Python.h"' > test.cc && $CXX -c test.cc -o /dev/null -I ./Include -I . notifications: email: false |