Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(70)

Unified Diff: third_party/pexpect/.travis.yml

Issue 1398903002: Add third_party/pexpect (Closed) Base URL: https://chromium.googlesource.com/crashpad/crashpad@end-to-end-test
Patch Set: Created 5 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/pexpect/.gitignore ('k') | third_party/pexpect/DEVELOPERS.rst » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
« no previous file with comments | « third_party/pexpect/.gitignore ('k') | third_party/pexpect/DEVELOPERS.rst » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698