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

Unified Diff: tracing/bin/run_py_tests

Issue 1685683003: Implement Timeline Based Measurement v2 (Closed) Base URL: git@github.com:catapult-project/catapult.git@new_style_results
Patch Set: fix vinn tests Created 4 years, 10 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: tracing/bin/run_py_tests
diff --git a/tracing/bin/run_py_tests b/tracing/bin/run_py_tests
index 07af929ce6ff82aa99b093b12b94be6c9e12c3f4..d5cf781888af6fb4e715bae9e5e21c30164b2f3a 100755
--- a/tracing/bin/run_py_tests
+++ b/tracing/bin/run_py_tests
@@ -4,6 +4,7 @@
# found in the LICENSE file.
import os
+import platform
import sys
_CATAPULT_PATH = os.path.abspath(os.path.join(
@@ -32,5 +33,8 @@ if __name__ == '__main__':
install.InstallHooks()
from catapult_build import run_with_typ
+ # https://github.com/catapult-project/catapult/issues/2050
+ if platform.system() != 'Windows':
+ _RunTestsOrDie(os.path.join(_TRACING_PATH, 'tracing'))
_RunTestsOrDie(os.path.join(_TRACING_PATH, 'tracing_build'))
sys.exit(0)
« no previous file with comments | « telemetry/telemetry/web_perf/timeline_based_page_test_unittest.py ('k') | tracing/tracing/metrics/__init__.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698