Skip to content

Commit 1f532f6

Browse files
authored
chore(bigquery): remove duplicate test dependencies (googleapis#9503)
* chore(bigquery): remove duplicate test dependencies * Demote test_utils from LOCAL_DEPS in noxfile The test_utils dependency is only nedeed for test sessions, but not for some other nox sessions such as "lint" and "docs".
1 parent 8d598de commit 1f532f6

1 file changed

Lines changed: 2 additions & 5 deletions

File tree

bigquery/noxfile.py

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,7 @@
2020
import nox
2121

2222

23-
LOCAL_DEPS = (
24-
os.path.join("..", "api_core[grpc]"),
25-
os.path.join("..", "core"),
26-
os.path.join("..", "test_utils"),
27-
)
23+
LOCAL_DEPS = (os.path.join("..", "api_core[grpc]"), os.path.join("..", "core"))
2824

2925
BLACK_PATHS = ("docs", "google", "samples", "tests", "noxfile.py", "setup.py")
3026

@@ -42,6 +38,7 @@ def default(session):
4238
for local_dep in LOCAL_DEPS:
4339
session.install("-e", local_dep)
4440

41+
session.install("-e", os.path.join("..", "test_utils"))
4542
dev_install = ".[all]"
4643
session.install("-e", dev_install)
4744

0 commit comments

Comments
 (0)