@@ -47,35 +47,43 @@ jobs:
4747 - name : Test arq latest
4848 run : |
4949 set -x # print commands that are executed
50- ./scripts/runtox.sh "py${{ matrix.python-version }}-arq-latest" --cov=tests --cov=sentry_sdk --cov-report= --cov-branch
50+ ./scripts/runtox.sh "py${{ matrix.python-version }}-arq-latest"
5151 - name : Test beam latest
5252 run : |
5353 set -x # print commands that are executed
54- ./scripts/runtox.sh "py${{ matrix.python-version }}-beam-latest" --cov=tests --cov=sentry_sdk --cov-report= --cov-branch
54+ ./scripts/runtox.sh "py${{ matrix.python-version }}-beam-latest"
5555 - name : Test celery latest
5656 run : |
5757 set -x # print commands that are executed
58- ./scripts/runtox.sh "py${{ matrix.python-version }}-celery-latest" --cov=tests --cov=sentry_sdk --cov-report= --cov-branch
58+ ./scripts/runtox.sh "py${{ matrix.python-version }}-celery-latest"
5959 - name : Test huey latest
6060 run : |
6161 set -x # print commands that are executed
62- ./scripts/runtox.sh "py${{ matrix.python-version }}-huey-latest" --cov=tests --cov=sentry_sdk --cov-report= --cov-branch
62+ ./scripts/runtox.sh "py${{ matrix.python-version }}-huey-latest"
6363 - name : Test rq latest
6464 run : |
6565 set -x # print commands that are executed
66- ./scripts/runtox.sh "py${{ matrix.python-version }}-rq-latest" --cov=tests --cov=sentry_sdk --cov-report= --cov-branch
66+ ./scripts/runtox.sh "py${{ matrix.python-version }}-rq-latest"
6767 - name : Test spark latest
6868 run : |
6969 set -x # print commands that are executed
70- ./scripts/runtox.sh "py${{ matrix.python-version }}-spark-latest" --cov=tests --cov=sentry_sdk --cov-report= --cov-branch
70+ ./scripts/runtox.sh "py${{ matrix.python-version }}-spark-latest"
7171 - name : Generate coverage XML
72+ if : ${{ !cancelled() }}
7273 run : |
7374 coverage combine .coverage*
7475 coverage xml -i
75- - uses : codecov/codecov-action@v4
76+ - name : Upload coverage to Codecov
77+ if : ${{ !cancelled() }}
78+ uses : codecov/codecov-action@v4.5.0
7679 with :
7780 token : ${{ secrets.CODECOV_TOKEN }}
7881 files : coverage.xml
82+ - name : Upload test results to Codecov
83+ if : ${{ !cancelled() }}
84+ uses : codecov/test-results-action@v1
85+ with :
86+ token : ${{ secrets.CODECOV_TOKEN }}
7987 test-data_processing-pinned :
8088 name : Data Processing (pinned)
8189 timeout-minutes : 30
@@ -105,35 +113,43 @@ jobs:
105113 - name : Test arq pinned
106114 run : |
107115 set -x # print commands that are executed
108- ./scripts/runtox.sh --exclude-latest "py${{ matrix.python-version }}-arq" --cov=tests --cov=sentry_sdk --cov-report= --cov-branch
116+ ./scripts/runtox.sh --exclude-latest "py${{ matrix.python-version }}-arq"
109117 - name : Test beam pinned
110118 run : |
111119 set -x # print commands that are executed
112- ./scripts/runtox.sh --exclude-latest "py${{ matrix.python-version }}-beam" --cov=tests --cov=sentry_sdk --cov-report= --cov-branch
120+ ./scripts/runtox.sh --exclude-latest "py${{ matrix.python-version }}-beam"
113121 - name : Test celery pinned
114122 run : |
115123 set -x # print commands that are executed
116- ./scripts/runtox.sh --exclude-latest "py${{ matrix.python-version }}-celery" --cov=tests --cov=sentry_sdk --cov-report= --cov-branch
124+ ./scripts/runtox.sh --exclude-latest "py${{ matrix.python-version }}-celery"
117125 - name : Test huey pinned
118126 run : |
119127 set -x # print commands that are executed
120- ./scripts/runtox.sh --exclude-latest "py${{ matrix.python-version }}-huey" --cov=tests --cov=sentry_sdk --cov-report= --cov-branch
128+ ./scripts/runtox.sh --exclude-latest "py${{ matrix.python-version }}-huey"
121129 - name : Test rq pinned
122130 run : |
123131 set -x # print commands that are executed
124- ./scripts/runtox.sh --exclude-latest "py${{ matrix.python-version }}-rq" --cov=tests --cov=sentry_sdk --cov-report= --cov-branch
132+ ./scripts/runtox.sh --exclude-latest "py${{ matrix.python-version }}-rq"
125133 - name : Test spark pinned
126134 run : |
127135 set -x # print commands that are executed
128- ./scripts/runtox.sh --exclude-latest "py${{ matrix.python-version }}-spark" --cov=tests --cov=sentry_sdk --cov-report= --cov-branch
136+ ./scripts/runtox.sh --exclude-latest "py${{ matrix.python-version }}-spark"
129137 - name : Generate coverage XML
138+ if : ${{ !cancelled() }}
130139 run : |
131140 coverage combine .coverage*
132141 coverage xml -i
133- - uses : codecov/codecov-action@v4
142+ - name : Upload coverage to Codecov
143+ if : ${{ !cancelled() }}
144+ uses : codecov/codecov-action@v4.5.0
134145 with :
135146 token : ${{ secrets.CODECOV_TOKEN }}
136147 files : coverage.xml
148+ - name : Upload test results to Codecov
149+ if : ${{ !cancelled() }}
150+ uses : codecov/test-results-action@v1
151+ with :
152+ token : ${{ secrets.CODECOV_TOKEN }}
137153 check_required_tests :
138154 name : All Data Processing tests passed
139155 needs : test-data_processing-pinned
0 commit comments