@@ -45,45 +45,46 @@ jobs:
4545 run : hatch run types:check
4646
4747 - name : Run tests
48- run : hatch test --python ${{ matrix.python-version }} --cover-quiet --randomize
49-
50- - name : Create coverage report
51- run : hatch run hatch-test.py${{ matrix.python-version }}:coverage xml
52-
53- - name : Upload coverage data
54- uses : actions/upload-artifact@v4
55- with :
56- name : coverage-${{ matrix.os }}-${{ matrix.python-version }}
57- path : coverage.xml
58-
59- coverage :
60- name : Upload coverage
61- needs :
62- - run
63- runs-on : ubuntu-latest
64-
65- permissions :
66- contents : read
67- id-token : write
68-
69- steps :
70- - name : Download coverage data
71- uses : actions/download-artifact@v4
72- with :
73- pattern : coverage-*
74- path : coverage_data
75-
76- - name : Upload coverage to Codecov
77- uses : codecov/codecov-action@v5
78- with :
79- directory : coverage_data
80- use_oidc : true
48+ run : hatch test --python ${{ matrix.python-version }} tests/env/qa/types/test_linux_container.py::TestStart::test_default -vv
49+ # run: hatch test --python ${{ matrix.python-version }} --cover-quiet --randomize
50+
51+ # - name: Create coverage report
52+ # run: hatch run hatch-test.py${{ matrix.python-version }}:coverage xml
53+
54+ # - name: Upload coverage data
55+ # uses: actions/upload-artifact@v4
56+ # with:
57+ # name: coverage-${{ matrix.os }}-${{ matrix.python-version }}
58+ # path: coverage.xml
59+
60+ # coverage:
61+ # name: Upload coverage
62+ # needs:
63+ # - run
64+ # runs-on: ubuntu-latest
65+
66+ # permissions:
67+ # contents: read
68+ # id-token: write
69+
70+ # steps:
71+ # - name: Download coverage data
72+ # uses: actions/download-artifact@v4
73+ # with:
74+ # pattern: coverage-*
75+ # path: coverage_data
76+
77+ # - name: Upload coverage to Codecov
78+ # uses: codecov/codecov-action@v5
79+ # with:
80+ # directory: coverage_data
81+ # use_oidc: true
8182
8283 check :
8384 if : always()
8485 needs :
8586 - run
86- - coverage
87+ # - coverage
8788 runs-on : ubuntu-latest
8889
8990 steps :
0 commit comments