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

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

Issue 1310343005: [Telemetry] Add pyfakefs to telemetry/third_party (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add license header to setup.py Created 5 years, 3 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
Index: tools/telemetry/third_party/pyfakefs/pyfakefs/.travis.yml
diff --git a/tools/telemetry/third_party/webpagereplay/.travis.yml b/tools/telemetry/third_party/pyfakefs/pyfakefs/.travis.yml
similarity index 65%
copy from tools/telemetry/third_party/webpagereplay/.travis.yml
copy to tools/telemetry/third_party/pyfakefs/pyfakefs/.travis.yml
index 23e151b98bad3f01a3b92e39c2e49a01f5ccca12..bbd351ba0b0ba65ed2095980bd22845ff28eb498 100644
--- a/tools/telemetry/third_party/webpagereplay/.travis.yml
+++ b/tools/telemetry/third_party/pyfakefs/pyfakefs/.travis.yml
@@ -1,4 +1,6 @@
-# Copyright 2015 Google Inc. All Rights Reserved.
+# Perform continuous integration testing with Travis CI.
+#
+# Copyright 2015 John McGehee. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
@@ -13,22 +15,15 @@
# limitations under the License.
language: python
-
python:
- - "2.7"
+ - "2.6"
+ - "2.7"
+ - "3.2"
+ - "3.3"
+ - "3.4"
install:
- - pip install -r requirements.txt
- - pip install coveralls
-
-# traffic_shaper test requires sudo.
-sudo: required
-
-script:
- - sudo $(which coverage) run run_tests
-
-after_script:
- - coveralls
+ - if [[ $TRAVIS_PYTHON_VERSION == 2.6 ]]; then pip install importlib unittest2; fi
+ - pip install -r requirements.txt
-notifications:
- email: false
+script: ./all_tests.py
« no previous file with comments | « tools/telemetry/third_party/pyfakefs/README.chromium ('k') | tools/telemetry/third_party/pyfakefs/pyfakefs/COPYING » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698