Currently unit and system tests for storage are failing due to a change introduced by #9915
headers[CLIENT_INFO_HEADER] = self.user_agent
headers["User-Agent"] = self.user_agent
return self._do_request(
> method, url, headers, data, target_object, timeout=timeout
)
E TypeError: _do_request() got an unexpected keyword argument 'timeout'
Unit Tests: 29 failed, 681 passed, 2 skipped in 14.05s
Update minimum versions for core/api core in storage to
"google-auth >= 1.9.0, < 2.0dev",
"google-api-core >= 1.15.0, < 2.0dev",
"google-cloud-core >= 1.1.0, < 2.0dev"
Rerun tests and adjust to account for timeout param.
Currently unit and system tests for storage are failing due to a change introduced by #9915
Unit Tests:
29 failed, 681 passed, 2 skipped in 14.05sUpdate minimum versions for core/api core in storage to
Rerun tests and adjust to account for timeout param.