ci: tryout downgrade opencv for macos

This commit is contained in:
scito
2022-12-30 18:51:13 +01:00
parent 652ecf57f0
commit 7eb6f036ab
2 changed files with 4 additions and 2 deletions

View File

@@ -51,7 +51,8 @@ jobs:
if: matrix.python-version == '3.x'
- name: Test with pytest
run: pytest
if: (matrix.python-version != '3.x' || matrix.platform != 'ubuntu-latest') && matrix.platform != 'macos-latest'
if: (matrix.python-version != '3.x' || matrix.platform != 'ubuntu-latest')
# && matrix.platform != 'macos-latest'
- name: Test with pytest (with code coverage)
run: pytest --cov=test_extract_otp_secret_keys_pytest --junitxml=pytest.xml --cov-report=term-missing | tee pytest-coverage.txt
if: matrix.python-version == '3.x' && matrix.platform == 'ubuntu-latest'