Skip to content

Commit

Permalink
investigate path issue
Browse files Browse the repository at this point in the history
  • Loading branch information
sakthivelmanii committed Jan 9, 2025
1 parent dc37c46 commit a4b38af
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .kokoro/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ index-servers =
python-3p-trusted
[python-3p-trusted]
repository: https://us-python.pkg.dev/artifact-foundry-prod/python-3p-trusted/
repository = https://us-python.pkg.dev/artifact-foundry-prod/python-3p-trusted/
EOL
mkdir -p $HOME/.config/pip
cat > $HOME/.config/pip/pip.conf <<EOL
Expand All @@ -65,6 +65,7 @@ index-url = https://us-python.pkg.dev/artifact-foundry-prod/python-3p-trusted/si
EOL
keyring --list-backends
gcloud config get-value core/account
export PIP_NO_INPUT=1
fi

# If NOX_SESSION is set, it only runs the specified session,
Expand Down
2 changes: 1 addition & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -267,8 +267,8 @@ def install_systemtest_dependencies(session, *constraints):
# Use pre-release gRPC for system tests.
# Exclude version 1.52.0rc1 which has a known issue.
# See https://github.com/grpc/grpc/issues/32163
session.install("--pre", "grpcio!=1.52.0rc1")

session.install("grpcio-admin", "--no-input", "--debug", "--verbose")
session.install(*SYSTEM_TEST_STANDARD_DEPENDENCIES, *constraints)

if SYSTEM_TEST_EXTERNAL_DEPENDENCIES:
Expand Down
7 changes: 7 additions & 0 deletions tests/system/test_database_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -294,6 +294,13 @@ def test_iam_policy(

new_policy = temp_db.get_iam_policy(3)
assert new_policy.version == 3
print(new_policy.bindings)
print(str(new_policy.bindings))
print("------")
print(new_binding)
print(str(new_binding))
print("------")
print(isinstance(new_policy.bindings, new_binding))
assert new_policy.bindings == [new_binding]


Expand Down

0 comments on commit a4b38af

Please sign in to comment.