From 389fd02d86053fe7c094021a74b228f4b58392d8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miro=20Hron=C4=8Dok?= Date: Tue, 16 Jan 2024 20:28:29 +0100 Subject: [PATCH] Assert the CI tests pass, install pooch from PyPI Related: RHEL-21591 --- plan.fmf | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/plan.fmf b/plan.fmf index 598e6ab..ba8bebe 100644 --- a/plan.fmf +++ b/plan.fmf @@ -5,7 +5,15 @@ discover: tests: - name: bundled tests require: + - python3.11-pip - python3.11-pytest - python3.11-scipy + # transitive requirements of pooch, we want them from RHEL: + - python3.11-charset-normalizer + - python3.11-idna + - python3.11-requests + - python3.11-urllib3 duration: 30m - test: python3.11 -c 'import scipy; scipy.test()' + test: | + pip3.11 install pooch==1.8.0 && + python3.11 -c 'import scipy; assert scipy.test()'