Skip to content

Commit aeaeb49

Browse files
authored
chore: allow bigframes tests to use compute engine credentials (#17824)
This is in response to internal issue b/537733439 where the tests are being skipped on the internal test cluster 🦕
1 parent 6702c7a commit aeaeb49

1 file changed

Lines changed: 0 additions & 6 deletions

File tree

packages/bigframes/noxfile.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -334,9 +334,6 @@ def run_system(
334334
CURRENT_DIRECTORY / "testing" / f"constraints-{session.python}.txt"
335335
)
336336

337-
if "GOOGLE_APPLICATION_CREDENTIALS" not in os.environ:
338-
session.skip("Credentials must be set via environment variable")
339-
340337
# Check the value of `RUN_SYSTEM_TESTS` env var. It defaults to true.
341338
if os.environ.get("RUN_SYSTEM_TESTS", "true") == "false":
342339
session.skip("RUN_SYSTEM_TESTS is set to false, skipping")
@@ -595,9 +592,6 @@ def docfx(session):
595592

596593

597594
def prerelease(session: nox.sessions.Session, tests_path, extra_pytest_options=()):
598-
if "GOOGLE_APPLICATION_CREDENTIALS" not in os.environ:
599-
session.skip("Credentials must be set via environment variable")
600-
601595
constraints_path = str(
602596
CURRENT_DIRECTORY / "testing" / f"constraints-{session.python}.txt"
603597
)

0 commit comments

Comments
 (0)