forked from googleapis/python-ndb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathowlbot.py
54 lines (42 loc) · 1.68 KB
/
owlbot.py
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
import synthtool as s
from synthtool import gcp
from synthtool.languages import python
AUTOSYNTH_MULTIPLE_PRS = True
common = gcp.CommonTemplates()
# ----------------------------------------------------------------------------
# Add templated files
# ----------------------------------------------------------------------------
templated_files = common.py_library(unit_cov_level=100, cov_level=100)
python.py_samples(skip_readmes=True)
s.move(templated_files / '.kokoro') # just move kokoro configs
s.replace([".kokoro/publish-docs.sh", ".kokoro/build.sh"], "cd github/python-ndb",
"""cd github/python-ndb
# Need enchant for spell check
sudo apt-get update
sudo apt-get -y install dictionaries-common aspell aspell-en \\
hunspell-en-us libenchant1c2a enchant""")
s.replace(".kokoro/build.sh", """(export PROJECT_ID=.*)""", """\g<1>
# Configure local Redis to be used
export REDIS_CACHE_URL=redis://localhost
redis-server &
# Configure local memcached to be used
export MEMCACHED_HOSTS=127.0.0.1
service memcached start
# Some system tests require indexes. Use gcloud to create them.
gcloud auth activate-service-account --key-file=$GOOGLE_APPLICATION_CREDENTIALS --project=$PROJECT_ID
gcloud --quiet --verbosity=debug datastore indexes create tests/system/index.yaml
""")
s.replace(
".kokoro/docker/docs/Dockerfile",
"libsqlite3-dev.*\n",
"\g<0> memcached \\\n"\
)
s.replace(
".kokoro/docker/docs/Dockerfile",
"# Install dependencies.\n",
"""\g<0># Spell check related
RUN apt-get update && apt-get install -y dictionaries-common aspell aspell-en \\
hunspell-en-us libenchant1c2a enchant
"""
)
s.shell.run(["nox", "-s", "blacken"], hide_output=False)