FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
cloud-trace-nodejs/owlbot.py at main · googleapis/cloud-trace-nodejs · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
This repository was archived by the owner on Jan 21, 2026. It is now read-only.
googleapis
/
cloud-trace-nodejs
Public archive
Notifications
You must be signed in to change notification settings
Fork
97
Star
282
Code
Issues
6
Pull requests
40
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
cloud-trace-nodejs
/
owlbot.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
63 lines (55 loc) · 2.36 KB
Breadcrumbs
cloud-trace-nodejs
/
owlbot.py
Copy path
File metadata and controls
63 lines (55 loc) · 2.36 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
# Copyright 2018 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import
synthtool
as
s
import
synthtool
.
languages
.
node
as
node
node
.
owlbot_main
(
templates_excludes
=
[
'.eslintignore'
,
'.github/workflows/ci.yaml'
,
'.nycrc'
,
'.prettierignore'
,
'README.md'
])
### SUPPORT DATABASE PLUGINS ###
# Database plugins require that an instance of that database is running at a
# known address. On Unix we spin up Docker containers to do so, while on Windows
# we disable plugin integration tests, as there is no known procedure for doing
# something equivalent.
s
.
replace
(
'.kokoro/test.bat'
,
r'(call npm install \|\| goto :error)'
,
r"""
@rem Plugin integration tests on Windows are skipped, because there is no known
@rem procedure to start up database docker containers for the Kokoro Windows CI.
set TRACE_TEST_EXCLUDE_INTEGRATION=1
\1"""
)
s
.
replace
(
'.kokoro/trampoline.sh'
,
r'(python3 "\$\{KOKORO_GFILE_DIR\}/trampoline_v1\.py")'
,
r"""# From bin/docker-trace.sh
# Start up database docker containers for plugin integration tests.
docker run --name trace-test-mongo -p 127.0.0.1:27017:27017 -d mongo
docker run --name trace-test-redis -p 127.0.0.1:6379:6379 -d redis
docker run --name trace-test-mysql -p 127.0.0.1:3306:3306\
-e MYSQL_ROOT_PASSWORD='Password12!'\
-e MYSQL_DATABASE=test\
-d mysql:5
docker run --name trace-test-postgres -p 127.0.0.1:5432:5432\
-e POSTGRES_USER=postgres\
-e POSTGRES_PASSWORD='Password12!'\
-e POSTGRES_DB=test\
-d postgres
\1"""
)
### FIX CODE COVERAGE ###
# The Trace Agent has a custom script for generating code coverage (including
# custom nyc CLI params in lieu of .nycrc), which is necessary because its tests
# are not run in the same process (due to its monkeypatching nature).
# (It's possible that in the future, we adopt .nycrc, but only as a base
# configuration, as we need to specify a different reporting directory for each
# test.)
Back
|
FazBrowse Home
|
New Git URL