File tree Expand file tree Collapse file tree 1 file changed +2
-9
lines changed Expand file tree Collapse file tree 1 file changed +2
-9
lines changed Original file line number Diff line number Diff line change @@ -64,15 +64,6 @@ matrix:
64
64
# Make the `coverage` command available to Codecov w/ a version of Python that can parse all source files.
65
65
- source ./venv/bin/activate
66
66
- bash <(curl -s https://codecov.io/bash)
67
- - os : linux
68
- language : cpp
69
- compiler : clang
70
- env :
71
- - TESTING="C++ header compatibility"
72
- before_script :
73
- - ./configure
74
- script :
75
- - echo '#include "Python.h"' > test.cc && $CXX -c test.cc -o /dev/null -I ./Include -I .
76
67
77
68
# Travis provides only 2 cores, so don't overdue the parallelism and waste memory.
78
69
before_script :
@@ -88,6 +79,8 @@ before_script:
88
79
script :
89
80
# `-r -w` implicitly provided through `make buildbottest`.
90
81
- make buildbottest TESTOPTS="-j4"
82
+ # Test for C++ header compatibility.
83
+ - echo '#include "Python.h"' > test.cc && $CXX -c test.cc -o /dev/null -I ./Include -I .
91
84
92
85
notifications :
93
86
email : false
You can’t perform that action at this time.
0 commit comments