Bug 1272782 - Use mozsystemmonitor 0.3 in mozharness; r?catlee draft
authorGregory Szorc <gps@mozilla.com>
Fri, 13 May 2016 14:14:10 -0700
changeset 367008 7613ac6d831cc5a9cab51e55ff39b0947fa7f27d
parent 366990 21aefbb06de1ba284d12ba3db67aa6855b5d0854
child 520887 f0b5dd09e177a0dc9003a1cb41ef695513746d8a
push id18108
push userbmo:gps@mozilla.com
push dateFri, 13 May 2016 21:14:29 +0000
reviewerscatlee
bugs1272782
milestone49.0a1
Bug 1272782 - Use mozsystemmonitor 0.3 in mozharness; r?catlee MozReview-Commit-ID: 6XxWnWGkiZn
testing/mozharness/mozharness/base/python.py
--- a/testing/mozharness/mozharness/base/python.py
+++ b/testing/mozharness/mozharness/base/python.py
@@ -451,17 +451,17 @@ class ResourceMonitoringMixin(object):
     after that package is installed (as part of creating the virtualenv).
     That's just the way things have to be.
     """
     def __init__(self, *args, **kwargs):
         super(ResourceMonitoringMixin, self).__init__(*args, **kwargs)
 
         self.register_virtualenv_module('psutil>=3.1.1', method='pip',
                                         optional=True)
-        self.register_virtualenv_module('mozsystemmonitor==0.1',
+        self.register_virtualenv_module('mozsystemmonitor==0.3',
                                         method='pip', optional=True)
         self._resource_monitor = None
 
     @PostScriptAction('create-virtualenv')
     def _start_resource_monitoring(self, action, success=None):
         self.activate_virtualenv()
 
         # Resource Monitor requires Python 2.7, however it's currently optional.