Changeset 221825 in webkit


Ignore:
Timestamp:
Sep 9, 2017 9:58:46 AM (7 years ago)
Author:
Ryan Haddad
Message:

Unreviewed, rolling out r221801.

This change introduced a webkitpy test failure.

Reverted changeset:

"bisect-builds doesn't work due to missing requests module"
https://bugs.webkit.org/show_bug.cgi?id=175709
http://trac.webkit.org/changeset/221801

Location:
trunk/Tools
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r221824 r221825  
     12017-09-09  Ryan Haddad  <ryanhaddad@apple.com>
     2
     3        Unreviewed, rolling out r221801.
     4
     5        This change introduced a webkitpy test failure.
     6
     7        Reverted changeset:
     8
     9        "bisect-builds doesn't work due to missing requests module"
     10        https://bugs.webkit.org/show_bug.cgi?id=175709
     11        http://trac.webkit.org/changeset/221801
     12
    1132017-09-09  Ryan Haddad  <ryanhaddad@apple.com>
    214
  • trunk/Tools/Scripts/bisect-builds

    r221801 r221825  
    3131import math
    3232import os
     33import requests
    3334import shutil
    3435import subprocess
     
    3637import tempfile
    3738import urlparse
    38 import webkitpy.thirdparty.autoinstalled.requests as requests
    3939
    4040REST_API_URL = 'https://q1tzqfy48e.execute-api.us-west-2.amazonaws.com/v2/'
  • trunk/Tools/Scripts/webkitpy/thirdparty/__init__.py

    r221801 r221825  
    107107        elif '.geckodriver' in fullname:
    108108            self.install_geckodriver()
    109         elif '.requests' in fullname:
    110             self._install_requests()
    111 
    112     def _install_requests(self):
    113         self._install("https://pypi.python.org/packages/b0/e1/eab4fc3752e3d240468a8c0b284607899d2fbfb236a56b7377a329aa8d09/requests-2.18.4.tar.gz#md5=081412b2ef79bdc48229891af13f4d82",
    114                              "requests-2.18.4/requests")
    115109
    116110    def _install_mechanize(self):
  • trunk/Tools/Scripts/webkitpy/thirdparty/__init___unittest.py

    r221801 r221825  
    6464        import webkitpy.thirdparty.autoinstalled.pylint
    6565        import webkitpy.thirdparty.autoinstalled.pep8
    66         import webkitpy.thirdparty.autoinstalled.requests
Note: See TracChangeset for help on using the changeset viewer.