-
Notifications
You must be signed in to change notification settings - Fork 1.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
chore(bigquery): remove duplicate test dependencies #9503
Conversation
I would argue that dropping |
@tseaver I can demote |
7a1b8c4
to
691e5df
Compare
The test_utils dependency is only nedeed for test sessions, but not for some other nox sessions such as "lint" and "docs".
691e5df
to
4322bd7
Compare
The Cloud Build test failure is unrelated, currently occurring on all PRs, merging. |
Fixes #9502.
This PR removes redundancy in BigQuery's
noxfile
that results intest_utils
being installed twice.(modifying the noxfile directly, as it is not generated by the synth tool in BigQuery)
How to test
snippets
andsystem
. You do not have to wait for them to complete, just make sure the setup phase is completed and the relevant tests start running.Actual result (before the fix):
In both cases
test_utils
are installed twice. In the output:Expected result (after the fix):
test_utils
are only installed once in a session.