Skip to content

Commit e1db182

Browse files
authored
Dlp: Regeneration and hand edits (#3850)
1 parent fec5d55 commit e1db182

File tree

626 files changed

+38179
-14875
lines changed

Some content is hidden

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

626 files changed

+38179
-14875
lines changed

.circleci/config.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,13 @@ version: 2
33
jobs:
44
build:
55
docker:
6-
- image: googleapis/nox:0.11.2
6+
- image: googleapis/nox:0.17.0
77
steps:
88
- checkout
99
- run:
1010
name: Decrypt credentials
1111
command: |
1212
if [ -n "$GOOGLE_APPLICATION_CREDENTIALS" ]; then
13-
apt-get update && apt-get install -y openssl
1413
openssl aes-256-cbc -d -a -k "$GOOGLE_CREDENTIALS_PASSPHRASE" \
1514
-in /var/code/gcp/test_utils/credentials.json.enc \
1615
-out "$GOOGLE_APPLICATION_CREDENTIALS"
@@ -55,6 +54,12 @@ jobs:
5554
if [[ -n $(grep datastore ~/target_packages) ]]; then
5655
nox -f datastore/nox.py
5756
fi
57+
- run:
58+
name: Run tests - google.cloud.dlp
59+
command: |
60+
if [[ -n $(grep dlp ~/target_packages) ]]; then
61+
nox -f dlp/nox.py
62+
fi
5863
- run:
5964
name: Run tests - google.cloud.dns
6065
command: |

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ pip-log.txt
2828
.nox
2929
.tox
3030
.cache
31+
htmlcov
3132

3233
# Translations
3334
*.mo
@@ -55,7 +56,8 @@ coverage.xml
5556
system_tests/local_test_setup
5657

5758
# Make sure a generated file isn't accidentally committed.
58-
scripts/pylintrc_reduced
59+
pylintrc
60+
pylintrc.test
5961

6062
# Directories used for creating generated PB2 files
6163
generated_python/

0 commit comments

Comments
 (0)