Skip to content

Commit

Permalink
chore(release): add api token to staging release process (#502)
Browse files Browse the repository at this point in the history
adding ignore missing timeout to pylintrc
  • Loading branch information
josecorella committed Aug 26, 2022
1 parent ca58e5e commit 78e43b3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions codebuild/release/test-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ env:
variables:
BRANCH: "master"
secrets-manager:
TWINE_USERNAME: TestPyPiCryptoTools:username
TWINE_PASSWORD: TestPyPiCryptoTools:password
TWINE_USERNAME: TestPyPiAPIToken:username
TWINE_PASSWORD: TestPyPiAPIToken:password

phases:
install:
Expand Down
3 changes: 2 additions & 1 deletion decrypt_oracle/test/pylintrc
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ disable =
missing-docstring, # we don't write docstrings for tests
bad-continuation, # we let black handle this
ungrouped-imports, # we let isort handle this
consider-using-f-string # disable until 2022-05-05; 6 months after 3.5 deprecation
consider-using-f-string, # disable until 2022-05-05; 6 months after 3.5 deprecation
missing-timeout # disabling until we come up with a reasonable number

[FORMAT]
max-line-length = 120
Expand Down

0 comments on commit 78e43b3

Please sign in to comment.