Skip to content

Commit 26214d2

Browse files
authored
Update trace dependencies to fix the unit test (#3749)
* Fix trace unit test * Fix stuff
1 parent 45ee4bd commit 26214d2

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

trace/nox.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@
1414

1515
from __future__ import absolute_import
1616

17+
import os
18+
1719
import nox
1820

1921

@@ -41,7 +43,7 @@ def unit_tests(session, python_version):
4143
'--cov-config=.coveragerc',
4244
'--cov-report=',
4345
'--cov-fail-under=97',
44-
'tests/',
46+
os.path.join('tests', 'unit'),
4547
*session.posargs
4648
)
4749

trace/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
install_requires = [
1111
'google-gax>=0.15.7, <0.16dev',
1212
'googleapis-common-protos[grpc]>=1.5.2, <2.0dev',
13-
'google-cloud-core >= 0.24.0, < 0.25dev',
13+
'google-cloud-core >= 0.26.0, < 0.27dev',
1414
]
1515

1616
setup(

trace/tests/unit/test__gax.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,6 @@
1616

1717
import mock
1818

19-
from google.cloud._testing import _GAXBaseAPI
20-
2119

2220
class _Base(object):
2321
project = 'PROJECT'

0 commit comments

Comments
 (0)