-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Update packages * Bump version: 1.1.5 → 1.1.6 * Bump version: 1.1.6 → 1.1.7 * Update astroid package to 2.12.7 * Update pyproject.toml and scripts according to pylint recommendations Pylint complained about useless options or unknown options, and those have been removed. Also added 60 second timeouts to the requests calls. * Bump version: 1.1.7 → 1.1.8 * Format with black Python checks workflow failed and complained about formatting, so I did run black . to reformat the code * Bump version: 1.1.8 → 1.1.9 * Add env variable for PYTHON_KEYRING_BACKEND Because the python checks fail on this we are trying to resolve by adding the env variable, source: pypa/pip#7883 (comment) * Bump version: 1.1.9 → 1.1.10
- Loading branch information
1 parent
3c3235f
commit f43661f
Showing
8 changed files
with
28 additions
and
102 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,6 +6,7 @@ on: | |
|
||
env: | ||
REQUIRED_COVERAGE: 30 | ||
PYTHON_KEYRING_BACKEND: keyring.backends.null.Keyring | ||
|
||
jobs: | ||
python: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,7 @@ on: | |
workflow_dispatch: | ||
|
||
env: | ||
VERSION: 1.1.5 | ||
VERSION: 1.1.10 | ||
|
||
jobs: | ||
release: | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[tool.poetry] | ||
name = "vault-assessment-prometheus-exporter" | ||
version = "1.1.5" | ||
version = "1.1.10" | ||
description = "Prometheus exporter to monitor custom metadata for KV2 secrets for (self-imposed) expiration." | ||
authors = ["Eugene Davis <[email protected]>"] | ||
readme = "README.md" | ||
|
@@ -63,16 +63,6 @@ limit-inference-results = 100 | |
|
||
[tool.pylint.'MESSAGES CONTROL'] | ||
disable = [ | ||
"print-statement", | ||
"parameter-unpacking", | ||
"unpacking-in-except", | ||
"old-raise-syntax", | ||
"backtick", | ||
"long-suffix", | ||
"old-ne-operator", | ||
"old-octal-literal", | ||
"import-star-module-level", | ||
"non-ascii-bytes-literal", | ||
"raw-checker-failed", | ||
"bad-inline-option", | ||
"locally-disabled", | ||
|
@@ -81,68 +71,6 @@ disable = [ | |
"useless-suppression", | ||
"deprecated-pragma", | ||
"use-symbolic-message-instead", | ||
"apply-builtin", | ||
"basestring-builtin", | ||
"buffer-builtin", | ||
"cmp-builtin", | ||
"coerce-builtin", | ||
"execfile-builtin", | ||
"file-builtin", | ||
"long-builtin", | ||
"raw_input-builtin", | ||
"reduce-builtin", | ||
"standarderror-builtin", | ||
"unicode-builtin", | ||
"xrange-builtin", | ||
"coerce-method", | ||
"delslice-method", | ||
"getslice-method", | ||
"setslice-method", | ||
"no-absolute-import", | ||
"old-division", | ||
"dict-iter-method", | ||
"dict-view-method", | ||
"next-method-called", | ||
"metaclass-assignment", | ||
"indexing-exception", | ||
"raising-string", | ||
"reload-builtin", | ||
"oct-method", | ||
"hex-method", | ||
"nonzero-method", | ||
"cmp-method", | ||
"input-builtin", | ||
"round-builtin", | ||
"intern-builtin", | ||
"unichr-builtin", | ||
"map-builtin-not-iterating", | ||
"zip-builtin-not-iterating", | ||
"range-builtin-not-iterating", | ||
"filter-builtin-not-iterating", | ||
"using-cmp-argument", | ||
"eq-without-hash", | ||
"div-method", | ||
"idiv-method", | ||
"rdiv-method", | ||
"exception-message-attribute", | ||
"invalid-str-codec", | ||
"sys-max-int", | ||
"bad-python3-import", | ||
"deprecated-string-function", | ||
"deprecated-str-translate-call", | ||
"deprecated-itertools-function", | ||
"deprecated-types-field", | ||
"next-method-defined", | ||
"dict-items-not-iterating", | ||
"dict-keys-not-iterating", | ||
"dict-values-not-iterating", | ||
"deprecated-operator-function", | ||
"deprecated-urllib-function", | ||
"xreadlines-attribute", | ||
"deprecated-sys-function", | ||
"exception-escape", | ||
"comprehension-escape", | ||
"bad-continuation" | ||
] | ||
|
||
[tool.pylint.REFACTORING] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters