diff options
author | Marius Bakke <marius@gnu.org> | 2021-09-15 19:26:55 +0200 |
---|---|---|
committer | Marius Bakke <marius@gnu.org> | 2021-09-15 23:38:50 +0200 |
commit | ca9f5de1e4a3ac1ac60c7faf3002ad50ed048752 (patch) | |
tree | 3b47a780771b66cefa6aa15fc3e50f0ede9a3c9a | |
parent | 3b13dae8617ddda6125b493957ef13272b58e68c (diff) |
gnu: python-cfn-lint: Update to 0.54.1.
* gnu/packages/python-web.scm (python-cfn-lint): Update to 0.54.1.
[arguments]: Run tests verbosely.
-rw-r--r-- | gnu/packages/python-web.scm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm index 2b25cbc1c9..06c538c5c4 100644 --- a/gnu/packages/python-web.scm +++ b/gnu/packages/python-web.scm @@ -479,7 +479,7 @@ emit information from within their applications to the AWS X-Ray service.") (define-public python-cfn-lint (package (name "python-cfn-lint") - (version "0.51.0") + (version "0.54.1") (home-page "https://github.com/aws-cloudformation/cfn-python-lint") (source (origin (method git-fetch) @@ -489,7 +489,7 @@ emit information from within their applications to the AWS X-Ray service.") (file-name (git-file-name name version)) (sha256 (base32 - "1027s243sik25c6sqw6gla7k7vl3jdicrik5zdsa8pafxh2baja4")))) + "161mzzlpbi85q43kwzrj39qb32l6wg6xhnbbd4z860yrfbymsn87")))) (build-system python-build-system) (arguments `(#:phases (modify-phases %standard-phases @@ -507,7 +507,7 @@ emit information from within their applications to the AWS X-Ray service.") (getenv "PYTHONPATH"))) (setenv "PATH" (string-append out "/bin:" (getenv "PATH"))) - (invoke "python" "-m" "unittest" "discover" + (invoke "python" "-m" "unittest" "discover" "-v" "-s" "test"))))))) (native-inputs `(("python-pydot" ,python-pydot) |