• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1language: python
2
3python:
4  - 2.7
5  - 3.3
6  - 3.4
7  - 3.5
8  - 3.6
9  - pypy
10  - nightly
11
12matrix:
13  allow_failures:
14    # PyPy on Travis is currently incompatible with Cryptography.
15    - python: pypy
16
17install:
18  - export PYTHONIOENCODING=UTF8
19  - pip install coveralls pytest-cov ptyprocess
20
21script:
22    - ./tools/display-sighandlers.py
23    - ./tools/display-terminalinfo.py
24    - py.test --cov pexpect --cov-config .coveragerc
25
26after_success:
27  - coverage combine
28  - coveralls
29
30# Use new Travis stack, should be faster
31sudo: false
32