[sanitizer] Improve FreeBSD ASLR detection
[llvm-project.git] / lldb / third_party / Python / module / pexpect-4.6 / .travis.yml
blob40d962295012bc260fef755a1b0bed442989db57
1 language: python
3 python:
4   - 2.7
5   - 3.3
6   - 3.4
7   - 3.5
8   - 3.6
9   - pypy
10   - nightly
12 matrix:
13   allow_failures:
14     # PyPy on Travis is currently incompatible with Cryptography.
15     - python: pypy
17 install:
18   - export PYTHONIOENCODING=UTF8
19   - pip install coveralls pytest-cov ptyprocess
21 script:
22     - ./tools/display-sighandlers.py
23     - ./tools/display-terminalinfo.py
24     - py.test --cov pexpect --cov-config .coveragerc
26 after_success:
27   - coverage combine
28   - coveralls
30 # Use new Travis stack, should be faster
31 sudo: false