File tree Expand file tree Collapse file tree 1 file changed +22
-0
lines changed
Expand file tree Collapse file tree 1 file changed +22
-0
lines changed Original file line number Diff line number Diff line change 4949 token : ${{ secrets.CODECOV_TOKEN }}
5050 flags : unit
5151
52+ integration_tests :
53+ runs-on : ${{ matrix.os }}
54+ continue-on-error : true
55+ strategy :
56+ matrix :
57+ os : [ubuntu-latest, windows-latest]
58+ python-version : [3.9, 3.13]
59+ steps :
60+ - uses : actions/checkout@v4
61+ - name : Setup Python ${{ matrix.python-version }}
62+ uses : actions/setup-python@v5
63+ with :
64+ python-version : ${{ matrix.python-version }}
65+ - uses : ./.github/actions/setup-environment
66+ - name : Run integration tests
67+ run : uv run pytest -m integration --cov=. --cov-append --cov-branch --cov-report=xml
68+ - name : Upload coverage to Codecov
69+ uses : codecov/codecov-action@v5
70+ with :
71+ token : ${{ secrets.CODECOV_TOKEN }}
72+ flags : integration
73+
5274 system_tests :
5375 runs-on : windows-latest
5476 continue-on-error : true
You can’t perform that action at this time.
0 commit comments