Skip to content

Commit

Permalink
fix dependency installation in ci buildwheel test
Browse files Browse the repository at this point in the history
  • Loading branch information
Lukas Bommes committed Nov 1, 2024
1 parent 6018f6b commit 5570448
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -148,10 +148,10 @@ jobs:
CIBW_BUILD_FRONTEND: build
CIBW_TEST_COMMAND: |
echo "Running unit tests" && \
PROJECT_ROOT={project} python3 -m unittest discover -s {project}/tests -p "*tests.py" && \
echo "Running unit tests against oldest supported versions of dependencies" && \
yum install -y compat-openssl10 && \
ls {project} && \
PROJECT_ROOT={project} python3 -m unittest discover -s {project}/tests -p "*tests.py" && \
echo "Running unit tests against oldest supported versions of dependencies" && \
python3 -m pip install ${{ matrix.numpy_min_version }} ${{ matrix.opencv_min_version }} && \
PROJECT_ROOT={project} python3 -m unittest discover -s {project}/tests -p "*tests.py"
CIBW_BUILD_VERBOSITY: 1
Expand Down

0 comments on commit 5570448

Please # to comment.