Make the CI tests pass and assert they do

Resolves: RHEL-21591
This commit is contained in:
Miro Hrončok 2024-01-15 15:31:39 +01:00
parent 80216001b2
commit 20bff74ec1
1 changed files with 2 additions and 1 deletions

View File

@ -5,10 +5,11 @@ discover:
tests:
- name: bundled tests
require:
- gcc
- python3.11-pytest
- python3.11-numpy
- python3.11-pip
duration: 30m
test: |
pip3.11 install hypothesis==6.45.0 typing_extensions==4.4.0 &&
python3.11 -c 'import numpy; numpy.test()'
python3.11 -c 'import numpy; assert numpy.test()'