diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 04fe139..1349384 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,7 +20,7 @@ jobs: strategy: matrix: - python-version: ["3.x", "3.11", "3.9", "3.8", "3.7"] + python-version: ["3.x", "3.11", "3.10", "3.9", "3.8", "3.7"] platform: [ubuntu-latest, macos-latest, windows-latest] # exclude: @@ -60,8 +60,7 @@ jobs: if: matrix.python-version == '3.x' && matrix.platform == 'ubuntu-latest' - 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.python-version != '3.10' && matrix.platform != 'macos-latest') - name: Test with pytest (with code coverage) run: pytest --cov=extract_otp_secrets_test --junitxml=pytest.xml --cov-report=term-missing | tee pytest-coverage.txt if: matrix.python-version == '3.x' && matrix.platform == 'ubuntu-latest'