File tree Expand file tree Collapse file tree 5 files changed +6
-9
lines changed
bigquery/pandas-gbq-migration Expand file tree Collapse file tree 5 files changed +6
-9
lines changed Original file line number Diff line number Diff line change 38
38
/firestore /** /* .py @ GoogleCloudPlatform/firestore-dpe @ GoogleCloudPlatform/python-samples-owners
39
39
/functions /** /* .py @ ace-n @ grant @ GoogleCloudPlatform/python-samples-owners
40
40
/healthcare /** /* .py @ noerog @ GoogleCloudPlatform/python-samples-owners
41
- /iam /** /* .py @ melaniedejong @ GoogleCloudPlatform/python-samples-owners
41
+ /iam /** /* .py @ GoogleCloudPlatform/python-samples-owners
42
42
/iap /** /* .py @ GoogleCloudPlatform/python-samples-owners
43
43
/iot /** /* .py @ gguuss @ GoogleCloudPlatform/python-samples-owners
44
44
/jobs /** /* .py @ GoogleCloudPlatform/python-samples-owners
Original file line number Diff line number Diff line change @@ -69,10 +69,6 @@ assign_issues_by:
69
69
- ' api: healthcare'
70
70
to :
71
71
- noerog
72
- - labels :
73
- - ' api: iam'
74
- to :
75
- - melaniedejong
76
72
- labels :
77
73
- ' api: logging'
78
74
to :
Original file line number Diff line number Diff line change @@ -2,6 +2,6 @@ google-cloud-bigquery==1.28.0
2
2
google-cloud-bigquery-storage == 1.1.0
3
3
pandas == 0.25.3 ; python_version > '3.0'
4
4
pandas == 0.24.2 ; python_version < '3.0'
5
- pandas-gbq == 0.13.3
5
+ pandas-gbq == 0.14.0
6
6
pyarrow == 1.0.1
7
7
grpcio == 1.32.0
Original file line number Diff line number Diff line change @@ -71,7 +71,8 @@ def test_query_testable_permissions(capsys):
71
71
"//cloudresourcemanager.googleapis.com/projects/" + GCLOUD_PROJECT
72
72
)
73
73
out , _ = capsys .readouterr ()
74
- assert "apigee" in out
74
+ # Just make sure the sample printed out multiple permissions.
75
+ assert "\n " in out
75
76
76
77
77
78
def test_get_role (capsys ):
Original file line number Diff line number Diff line change @@ -196,12 +196,12 @@ def main():
196
196
# Disable
197
197
rename_parser = subparsers .add_parser (
198
198
'disable' , help = disable_service_account .__doc__ )
199
- list_parser .addargument ('email' )
199
+ list_parser .add_argument ('email' )
200
200
201
201
# Enable
202
202
rename_parser = subparsers .add_parser (
203
203
'enable' , help = enable_service_account .__doc__ )
204
- list_parser .addargument ('email' )
204
+ list_parser .add_argument ('email' )
205
205
206
206
# Delete
207
207
delete_parser = subparsers .add_parser (
You can’t perform that action at this time.
0 commit comments