diff options
Diffstat (limited to 'gnu/packages/check.scm')
-rw-r--r-- | gnu/packages/check.scm | 21 |
1 files changed, 13 insertions, 8 deletions
diff --git a/gnu/packages/check.scm b/gnu/packages/check.scm index 9660cff1c7..004ddef446 100644 --- a/gnu/packages/check.scm +++ b/gnu/packages/check.scm @@ -415,7 +415,7 @@ source code editors and IDEs.") (native-inputs (list go-github-com-docopt-docopt-go go-github-com-go-ini-ini - go-github-com-olekukonko-tablewriter + go-github-com-olekukonko-tablewriter-0.0.5 go-github-com-stretchr-testify go-md2man)) (home-page "https://github.com/mrtazz/checkmake") @@ -1216,7 +1216,7 @@ similar to unit tests.") (define-public gotestsum (package (name "gotestsum") - (version "1.12.0") + (version "1.12.2") (source (origin (method git-fetch) @@ -1225,7 +1225,7 @@ similar to unit tests.") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 - (base32 "0fx92jh6ay4rk1ljbgp9b2m4fafqwy0a19q7lhdabgb1j8dvgxvs")))) + (base32 "02q251j5kf2874vnvmbfc0ncnwssq459s8mf9f50cymqkpqbx0lp")))) (build-system go-build-system) (arguments (list @@ -1235,6 +1235,9 @@ similar to unit tests.") (string-join (list "TestE2E_IgnoresWarnings" "TestE2E_MaxFails_EndTestRun" + "TestE2E_RerunFails/first_run_has_errors,_abort_rerun" + "TestE2E_RerunFails/reruns_continues_to_fail" + "TestE2E_RerunFails/reruns_until_success" "TestScanTestOutput_TestTimeoutPanicRace/panic-race-2") "|")) ;; Run just unit test, integration tests from "testjson" require: run @@ -2775,16 +2778,18 @@ across test runs.") (define-public python-pytest-sugar (package (name "python-pytest-sugar") - (version "0.9.3") + (version "1.0.0") (source (origin (method url-fetch) (uri (pypi-uri "pytest-sugar" version)) (sha256 - (base32 "1i0hv3h49zvl62jbiyjag84carbrp3zprqzxffdr291nxavvac0n")))) - (build-system python-build-system) + (base32 "02kc4y0ry4y9lp63kjq9p7yvbjijfxn1fcn6wx6c1c7mb0rfh8k4")))) + (build-system pyproject-build-system) (propagated-inputs (list python-packaging python-pytest python-termcolor)) + (native-inputs + (list python-setuptools python-wheel)) (home-page "https://pivotfinland.com/pytest-sugar/") (synopsis "Plugin for pytest that changes the default look and feel") (description @@ -3561,7 +3566,7 @@ allowing you to declaratively define \"match\" rules.") ;; Upstream is informed to provide man/info for the project, see ;; <https://github.com/toml-lang/toml-test/issues/163>. (name "toml-test") - (version "1.5.0") + (version "1.6.0") (source (origin (method git-fetch) @@ -3570,7 +3575,7 @@ allowing you to declaratively define \"match\" rules.") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 - (base32 "188xcsxgn20pjnddfn3mvx7wak030xdgkhxkhjiijfap37gbv6df")))) + (base32 "1b6lfamh673a4x509cacr6qr1xvf82562cpqn9ygrgnd81469qcc")))) (build-system go-build-system) (arguments (list |