diff options
author | Thomas Kluyver <takowl@gmail.com> | 2014-12-19 17:47:52 -0800 |
---|---|---|
committer | Thomas Kluyver <takowl@gmail.com> | 2014-12-19 17:47:52 -0800 |
commit | 2855c07ee4735a0bfe711da776852541e5162d57 (patch) | |
tree | 8ad721f2d12334839f8764e65c1bd53a23a7ee55 | |
parent | 341ff08260657fa10ba719ce31d9da6013c24749 (diff) | |
download | pexpect-git-2855c07ee4735a0bfe711da776852541e5162d57.tar.gz |
Speed up Travis builds
Skip installing apt python-yaml package, pip reinstalls it anyway.
Use new Travis containerised stack.
-rw-r--r-- | .travis.yml | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml index 8d5e657..51c967d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -6,8 +6,6 @@ python: - 3.4 - pypy -before_install: - - sudo apt-get install python-yaml python3-yaml install: - export PYTHONIOENCODING=UTF8 - pip install coveralls pytest-cov ptyprocess @@ -20,3 +18,6 @@ script: after_success: - coverage combine - coveralls + +# Use new Travis stack, should be faster +sudo: false |