We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1fb24b6 commit c5bc6e4Copy full SHA for c5bc6e4
.travis.yml
@@ -31,6 +31,10 @@ matrix:
31
# compiler here and the other to run the coverage build. Clang is preferred
32
# in this instance for its better error messages.
33
env: TESTING=cpython
34
+ addons:
35
+ apt:
36
+ packages:
37
+ - xvfb
38
- os: linux
39
language: python
40
python: 2.7
@@ -91,7 +95,7 @@ script:
91
95
# Check that all symbols exported by libpython start with "Py" or "_Py"
92
96
- make smelly
93
97
# `-r -w` implicitly provided through `make buildbottest`.
94
- - make buildbottest TESTOPTS="-j4 -uall,-cpu"
98
+ - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then XVFB_RUN=xvfb-run; fi; $XVFB_RUN make buildbottest TESTOPTS="-j4 -uall,-cpu"
99
100
notifications:
101
email: false
0 commit comments