From: Efraim Flashner Date: Mon, 8 Feb 2021 07:59:17 +0000 (+0200) Subject: gnu: python-arrow: Adjust test suite. X-Git-Url: https://git.hcoop.net/jackhill/guix/guix.git/commitdiff_plain/08d81afa5fced426912b9bd594fea5a9fa965a0f gnu: python-arrow: Adjust test suite. * gnu/packages/time.scm (python-arrow)[arguments]: Skip test broken by dependant package. --- diff --git a/gnu/packages/time.scm b/gnu/packages/time.scm index 9b006a5438..746ba97c0f 100644 --- a/gnu/packages/time.scm +++ b/gnu/packages/time.scm @@ -2,7 +2,7 @@ ;;; Copyright © 2012 Nikita Karetnikov ;;; Copyright © 2013, 2017, 2020 Ludovic Courtès ;;; Copyright © 2013, 2015 Andreas Enge -;;; Copyright © 2015, 2016, 2017, 2018, 2019 Efraim Flashner +;;; Copyright © 2015, 2016, 2017, 2018, 2019, 2021 Efraim Flashner ;;; Copyright © 2015, 2017 Leo Famulari ;;; Copyright © 2015, 2017 Cyril Roelandt ;;; Copyright © 2016 Sou Bunnbu @@ -418,7 +418,10 @@ timestamps.") (modify-phases %standard-phases (replace 'check (lambda _ - (invoke "pytest" "-vv" "tests")))))) + (invoke "pytest" "-vv" "tests" + ;; python-dateutil doesn't recognize America/Nuuk. + ;; Remove when python-dateutil > 2.8.1. + "-k" "not test_parse_tz_name_zzz")))))) (native-inputs `(;; For testing ("python-chai" ,python-chai)