diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index b5608179..1279b219 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -16,15 +16,12 @@ jobs: strategy: matrix: os: [ubuntu-latest] - python: ['3.10'] - torch: [{base: '1.13.0', vision: '0.14.0'}] + python: ['3.10', '3.11'] + torch: [{base: '1.13.0', vision: '0.14.0'}, {base: '2.1.0', vision: '0.16.0'}] testmarker: ['-k "not test_models"', '-m base', '-m cfg', '-m torchscript', '-m features', '-m fxforward', '-m fxbackward'] - include: - - os: ubuntu-latest - python: '3.11' - torch: {base: '2.1.0', vision: '0.16.0'} - testmarker: ['-k "not test_models"', '-m base', '-m cfg', '-m torchscript', '-m features', '-m fxforward', '-m fxbackward'] - + exclude: + - python: '3.11' + torch: {base: '1.13.0', vision: '0.14.0'} runs-on: ${{ matrix.os }} steps: