Skip to content

Commit

Permalink
Update trace dependencies to fix the unit test (googleapis#3749)
Browse files Browse the repository at this point in the history
* Fix trace unit test

* Fix stuff
  • Loading branch information
liyanhui1228 authored and landrito committed Aug 22, 2017
1 parent a0a8ec5 commit 8be18f3
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 3 additions & 1 deletion trace/nox.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@

from __future__ import absolute_import

import os

import nox


Expand Down Expand Up @@ -41,7 +43,7 @@ def unit_tests(session, python_version):
'--cov-config=.coveragerc',
'--cov-report=',
'--cov-fail-under=97',
'tests/',
os.path.join('tests', 'unit'),
*session.posargs
)

Expand Down
2 changes: 1 addition & 1 deletion trace/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
install_requires = [
'google-gax>=0.15.7, <0.16dev',
'googleapis-common-protos[grpc]>=1.5.2, <2.0dev',
'google-cloud-core >= 0.24.0, < 0.25dev',
'google-cloud-core >= 0.26.0, < 0.27dev',
]

setup(
Expand Down
2 changes: 0 additions & 2 deletions trace/tests/unit/test__gax.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@

import mock

from google.cloud._testing import _GAXBaseAPI


class _Base(object):
project = 'PROJECT'
Expand Down

0 comments on commit 8be18f3

Please sign in to comment.