Skip to content

Commit a985c18

Browse files
telpiriondizcology
authored andcommitted
fix: per reviewer
1 parent 479df64 commit a985c18

File tree

7 files changed

+20
-15
lines changed

7 files changed

+20
-15
lines changed

docs/definition_v1beta1/services.rst

-2
This file was deleted.

docs/instance_v1beta1/services.rst

-2
This file was deleted.

docs/params_v1beta1/services.rst

-2
This file was deleted.

docs/prediction_v1beta1/services.rst

-2
This file was deleted.

noxfile.py

+3-4
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828

2929
DEFAULT_PYTHON_VERSION = "3.8"
3030
SYSTEM_TEST_PYTHON_VERSIONS = ["3.8"]
31-
UNIT_TEST_PYTHON_VERSIONS = ["3.6", "3.7", "3.8"]
31+
UNIT_TEST_PYTHON_VERSIONS = ["3.6", "3.7", "3.8", "3.9"]
3232

3333

3434
@nox.session(python=DEFAULT_PYTHON_VERSION)
@@ -81,9 +81,8 @@ def default(session):
8181
session.run(
8282
"py.test",
8383
"--quiet",
84-
"--cov=google.cloud.aiplatform",
85-
"--cov=google.cloud",
86-
"--cov=tests.unit",
84+
"--cov=google/cloud",
85+
"--cov=tests/unit",
8786
"--cov-append",
8887
"--cov-config=.coveragerc",
8988
"--cov-report=",

synth.metadata

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,21 +4,21 @@
44
"git": {
55
"name": ".",
66
"remote": "https://github.com/googleapis/python-aiplatform.git",
7-
"sha": "e5ddd3caee3db347a233bd2678c5b4cd8d8657bc"
7+
"sha": "688a06ff0bcc291cb63225787b7083e0b96b3615"
88
}
99
},
1010
{
1111
"git": {
1212
"name": "synthtool",
1313
"remote": "https://github.com/googleapis/synthtool.git",
14-
"sha": "32af6da519a6b042e3da62008e2a75e991efb6b4"
14+
"sha": "f94318521f63085b9ccb43d42af89f153fb39f15"
1515
}
1616
},
1717
{
1818
"git": {
1919
"name": "synthtool",
2020
"remote": "https://github.com/googleapis/synthtool.git",
21-
"sha": "32af6da519a6b042e3da62008e2a75e991efb6b4"
21+
"sha": "f94318521f63085b9ccb43d42af89f153fb39f15"
2222
}
2323
}
2424
],

synth.py

+14
Original file line numberDiff line numberDiff line change
@@ -37,12 +37,26 @@
3737
s.move(
3838
library,
3939
excludes=[
40+
".pre-commit-config.yaml",
4041
"setup.py",
4142
"README.rst",
4243
"docs/index.rst",
44+
"docs/definition_v1beta1/services.rst",
45+
"docs/instance_v1beta1/services.rst",
46+
"docs/params_v1beta1/services.rst",
47+
"docs/prediction_v1beta1/services.rst",
4348
"scripts/fixup_aiplatform_v1beta1_keywords.py",
49+
"scripts/fixup_definition_v1beta1_keywords.py",
50+
"scripts/fixup_instance_v1beta1_keywords.py",
51+
"scripts/fixup_params_v1beta1_keywords.py",
52+
"scripts/fixup_prediction_v1beta1_keywords.py",
4453
"google/cloud/aiplatform/__init__.py",
54+
"google/cloud/aiplatform/v1beta1/schema/**/services/",
4555
"tests/unit/gapic/aiplatform_v1beta1/test_prediction_service.py",
56+
"tests/unit/gapic/definition_v1beta1/",
57+
"tests/unit/gapic/instance_v1beta1/",
58+
"tests/unit/gapic/params_v1beta1/",
59+
"tests/unit/gapic/prediction_v1beta1/",
4660
],
4761
)
4862

0 commit comments

Comments
 (0)