Index: third_party/pexpect/.travis.yml |
diff --git a/third_party/pexpect/.travis.yml b/third_party/pexpect/.travis.yml |
new file mode 100644 |
index 0000000000000000000000000000000000000000..51c967d778195847787363e82bbf4bae2496ce6e |
--- /dev/null |
+++ b/third_party/pexpect/.travis.yml |
@@ -0,0 +1,23 @@ |
+language: python |
+ |
+python: |
+ - 2.7 |
+ - 3.3 |
+ - 3.4 |
+ - pypy |
+ |
+install: |
+ - export PYTHONIOENCODING=UTF8 |
+ - pip install coveralls pytest-cov ptyprocess |
+ |
+script: |
+ - ./tools/display-sighandlers.py |
+ - ./tools/display-terminalinfo.py |
+ - py.test --cov pexpect --cov-config .coveragerc |
+ |
+after_success: |
+ - coverage combine |
+ - coveralls |
+ |
+# Use new Travis stack, should be faster |
+sudo: false |