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

Unified Diff: tools/telemetry/third_party/rope/.travis.yml

Issue 1132103009: Example of refactoring using rope library. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 7 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 | « tools/telemetry/third_party/rope/.gitignore ('k') | tools/telemetry/third_party/rope/CONTRIBUTORS » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/telemetry/third_party/rope/.travis.yml
diff --git a/tools/telemetry/third_party/rope/.travis.yml b/tools/telemetry/third_party/rope/.travis.yml
new file mode 100644
index 0000000000000000000000000000000000000000..e3378a496f6adbd723ab83451df288ec0093d576
--- /dev/null
+++ b/tools/telemetry/third_party/rope/.travis.yml
@@ -0,0 +1,18 @@
+language: python
+sudo: false
+python:
+ - "2.6"
+ - "2.7"
+ - "pypy"
+ - "3.3"
+ - "3.4"
+ - "pypy3"
+matrix:
+ allow_failures:
+ - python: "pypy"
+ - python: "pypy3"
+ - python: "3.3"
+ - python: "3.4"
+before_script:
+ - '[ "${TRAVIS_PYTHON_VERSION}" = "2.6" ] && travis_retry pip install unittest2 || /bin/true'
+script: python setup.py test
« no previous file with comments | « tools/telemetry/third_party/rope/.gitignore ('k') | tools/telemetry/third_party/rope/CONTRIBUTORS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698