|
22 | 22 | strategy: |
23 | 23 | matrix: |
24 | 24 | config: |
25 | | - - {os: 'ubuntu-latest', python-version: '3.9'} |
26 | | - - {os: 'windows-latest', python-version: '3.9'} |
27 | | - - {os: 'macOS-latest', python-version: '3.9'} |
| 25 | + - {os: 'windows-latest', python-version: '3.10'} |
| 26 | + - {os: 'macOS-latest', python-version: '3.10'} |
28 | 27 | - {os: 'ubuntu-latest', python-version: '3.10'} |
29 | 28 | - {os: 'ubuntu-latest', python-version: '3.11'} |
30 | 29 | - {os: 'ubuntu-latest', python-version: '3.12'} |
@@ -57,23 +56,23 @@ jobs: |
57 | 56 | - name: Test with pytest |
58 | 57 | if: | |
59 | 58 | matrix.config.os != 'ubuntu-latest' || |
60 | | - matrix.config.python-version != '3.9' |
| 59 | + matrix.config.python-version != '3.12' |
61 | 60 | run: | |
62 | 61 | pytest -m ci |
63 | 62 | pytest -m ci_rdd |
64 | 63 |
|
65 | 64 | - name: Test with pytest and coverage |
66 | 65 | if: | |
67 | 66 | matrix.config.os == 'ubuntu-latest' && |
68 | | - matrix.config.python-version == '3.9' |
| 67 | + matrix.config.python-version == '3.12' |
69 | 68 | run: | |
70 | 69 | pip install pytest-cov |
71 | 70 | pytest --cov=./ --cov-report=xml --cov-report=html |
72 | 71 |
|
73 | 72 | - name: Archive code coverage results |
74 | 73 | if: | |
75 | 74 | matrix.config.os == 'ubuntu-latest' && |
76 | | - matrix.config.python-version == '3.9' |
| 75 | + matrix.config.python-version == '3.12' |
77 | 76 | uses: actions/upload-artifact@v4 |
78 | 77 | with: |
79 | 78 | name: code-coverage-report |
|
85 | 84 | - name: Upload coverage to Codecov |
86 | 85 | if: | |
87 | 86 | matrix.config.os == 'ubuntu-latest' && |
88 | | - matrix.config.python-version == '3.9' |
| 87 | + matrix.config.python-version == '3.12' |
89 | 88 | uses: codecov/codecov-action@v5 |
90 | 89 | with: |
91 | 90 | fail_ci_if_error: false |
|
96 | 95 | - name: Upload coverage to codacy |
97 | 96 | if: | |
98 | 97 | matrix.config.os == 'ubuntu-latest' && |
99 | | - matrix.config.python-version == '3.9' |
| 98 | + matrix.config.python-version == '3.12' |
100 | 99 | continue-on-error: true |
101 | 100 | uses: codacy/codacy-coverage-reporter-action@v1 |
102 | 101 | with: |
|
0 commit comments