Skip to content

Commit 78e43b3

Browse files
authored
chore(release): add api token to staging release process (aws#502)
adding ignore missing timeout to pylintrc
1 parent ca58e5e commit 78e43b3

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

codebuild/release/test-release.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ env:
44
variables:
55
BRANCH: "master"
66
secrets-manager:
7-
TWINE_USERNAME: TestPyPiCryptoTools:username
8-
TWINE_PASSWORD: TestPyPiCryptoTools:password
7+
TWINE_USERNAME: TestPyPiAPIToken:username
8+
TWINE_PASSWORD: TestPyPiAPIToken:password
99

1010
phases:
1111
install:

decrypt_oracle/test/pylintrc

+2-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@ disable =
55
missing-docstring, # we don't write docstrings for tests
66
bad-continuation, # we let black handle this
77
ungrouped-imports, # we let isort handle this
8-
consider-using-f-string # disable until 2022-05-05; 6 months after 3.5 deprecation
8+
consider-using-f-string, # disable until 2022-05-05; 6 months after 3.5 deprecation
9+
missing-timeout # disabling until we come up with a reasonable number
910

1011
[FORMAT]
1112
max-line-length = 120

0 commit comments

Comments
 (0)