Skip to content

Commit ca93198

Browse files
authored
Initial generation of google-cloud-talent (googleapis#7442)
1 parent 610cf27 commit ca93198

File tree

108 files changed

+33720
-1
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

108 files changed

+33720
-1
lines changed

.kokoro/continuous/talent.cfg

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# Format: //devtools/kokoro/config/proto/build.proto
2+
3+
# Tell the trampoline which build file to use.
4+
env_vars: {
5+
key: "PACKAGE"
6+
value: "talent"
7+
}

.kokoro/presubmit/talent.cfg

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# Format: //devtools/kokoro/config/proto/build.proto
2+
3+
# Tell the trampoline which build file to use.
4+
env_vars: {
5+
key: "PACKAGE"
6+
value: "talent"
7+
}

.kokoro/release/talent.cfg

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# Format: //devtools/kokoro/config/proto/build.proto
2+
3+
# Tell the trampoline which build file to use.
4+
env_vars: {
5+
key: "PACKAGE"
6+
value: "talent"
7+
}

docs/index.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@
3030
Spanner <spanner/index>
3131
Speech <speech/index>
3232
Storage <storage/index>
33+
Talent <talent/index>
3334
Tasks <tasks/index>
3435
Text-to-Speech <texttospeech/index>
3536
Translate <translate/index>

docs/requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ grpcio-gcp >= 0.2.2
3636
-e securitycenter/
3737
-e spanner/
3838
-e speech/
39+
-e talent/
3940
-e tasks/
4041
-e texttospeech/
4142
-e trace/

docs/talent

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../talent/docs

synth.metadata

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
"updateTime": "2019-02-05T21:06:12.149601Z"
2+
"updateTime": "2019-02-25T21:49:12.469250Z"
33
}

talent/.coveragerc

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
[run]
2+
branch = True
3+
4+
[report]
5+
fail_under = 100
6+
show_missing = True
7+
exclude_lines =
8+
# Re-enable the standard pragma
9+
pragma: NO COVER
10+
# Ignore debug-only repr
11+
def __repr__
12+
# Ignore abstract methods
13+
raise NotImplementedError
14+
omit =
15+
*/gapic/*.py
16+
*/proto/*.py
17+
*/core/*.py
18+
*/site-packages/*.py

talent/.flake8

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
[flake8]
2+
ignore = E203, E266, E501, W503
3+
exclude =
4+
# Exclude generated code.
5+
**/proto/**
6+
**/gapic/**
7+
*_pb2.py
8+
9+
# Standard linting exemptions.
10+
__pycache__,
11+
.git,
12+
*.pyc,
13+
conf.py

talent/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# Changelog
2+
3+
[PyPI History][1]
4+
5+
[1]: https://pypi.org/project/google-cloud-talent/#history
6+

0 commit comments

Comments
 (0)