author | Brindusan Cristian <cbrindusan@mozilla.com> |
Fri, 10 Jan 2020 01:01:15 +0200 (2020-01-09) | |
changeset 509639 | 325da10270e4bbc644df0fd29a6c3f6ef536d262 |
parent 509638 | 783350b56e3eec3c41a20fffca4a1b8fb176783c |
child 509640 | bf551ae8dece8fff7b4fe2453aef6c62f204bdfc |
push id | 37000 |
push user | shindli@mozilla.com |
push date | Fri, 10 Jan 2020 05:03:08 +0000 (2020-01-10) |
treeherder | mozilla-central@558a2ae20a30 [default view] [failures only] |
perfherder | [talos] [build metrics] [platform microbench] (compared to previous push) |
bugs | 1602657 |
milestone | 74.0a1 |
backs out | 80f5c59d5df430ecff942865c54c7bb3c8ee4257 |
first release with | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
last release without | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
--- a/testing/raptor/raptor/raptor.py +++ b/testing/raptor/raptor/raptor.py @@ -165,23 +165,16 @@ either Raptor or browsertime.""" # debug mode is currently only supported when running locally self.debug_mode = debug_mode if self.config['run_local'] else False # if running debug-mode reduce the pause after browser startup if self.debug_mode: self.post_startup_delay = min(self.post_startup_delay, 3000) LOG.info("debug-mode enabled, reducing post-browser startup pause to %d ms" % self.post_startup_delay) - # if using conditioned profiles in CI, reduce default browser-settle - # time down to 1 second, from 30 - if not self.no_condprof and not self.config['run_local'] \ - and post_startup_delay == 30000: - self.post_startup_delay = 1000 - LOG.info("using conditioned profiles, so reducing post_startup_delay to %d ms" - % self.post_startup_delay) LOG.info("main raptor init, config is: %s" % str(self.config)) self.build_browser_profile() @property def is_localhost(self): return self.config.get('host') in ('localhost', '127.0.0.1')