From f7fe3fd05d8054ad67ba250c7dec35835d612660 Mon Sep 17 00:00:00 2001 From: Anton Pirker Date: Thu, 13 Apr 2023 15:31:44 +0200 Subject: [PATCH 1/5] Using the Codecov uploaded instead of deprecated python package --- .github/workflows/test-common.yml | 10 ++++++++-- .github/workflows/test-integration-aiohttp.yml | 10 ++++++++-- .github/workflows/test-integration-arq.yml | 10 ++++++++-- .github/workflows/test-integration-asgi.yml | 10 ++++++++-- .github/workflows/test-integration-aws_lambda.yml | 10 ++++++++-- .github/workflows/test-integration-beam.yml | 10 ++++++++-- .github/workflows/test-integration-boto3.yml | 10 ++++++++-- .github/workflows/test-integration-bottle.yml | 10 ++++++++-- .github/workflows/test-integration-celery.yml | 10 ++++++++-- .github/workflows/test-integration-chalice.yml | 10 ++++++++-- .../test-integration-cloud_resource_context.yml | 10 ++++++++-- .github/workflows/test-integration-django.yml | 10 ++++++++-- .github/workflows/test-integration-falcon.yml | 10 ++++++++-- .github/workflows/test-integration-fastapi.yml | 10 ++++++++-- .github/workflows/test-integration-flask.yml | 10 ++++++++-- .github/workflows/test-integration-gcp.yml | 10 ++++++++-- .github/workflows/test-integration-gevent.yml | 10 ++++++++-- .github/workflows/test-integration-grpc.yml | 10 ++++++++-- .github/workflows/test-integration-httpx.yml | 10 ++++++++-- .github/workflows/test-integration-huey.yml | 10 ++++++++-- .github/workflows/test-integration-opentelemetry.yml | 10 ++++++++-- .github/workflows/test-integration-pure_eval.yml | 10 ++++++++-- .github/workflows/test-integration-pymongo.yml | 10 ++++++++-- .github/workflows/test-integration-pyramid.yml | 10 ++++++++-- .github/workflows/test-integration-quart.yml | 10 ++++++++-- .github/workflows/test-integration-redis.yml | 10 ++++++++-- .github/workflows/test-integration-rediscluster.yml | 10 ++++++++-- .github/workflows/test-integration-requests.yml | 10 ++++++++-- .github/workflows/test-integration-rq.yml | 10 ++++++++-- .github/workflows/test-integration-sanic.yml | 10 ++++++++-- .github/workflows/test-integration-sqlalchemy.yml | 10 ++++++++-- .github/workflows/test-integration-starlette.yml | 10 ++++++++-- .github/workflows/test-integration-starlite.yml | 10 ++++++++-- .github/workflows/test-integration-tornado.yml | 10 ++++++++-- .github/workflows/test-integration-trytond.yml | 10 ++++++++-- scripts/split-tox-gh-actions/ci-yaml.txt | 10 ++++++++-- 36 files changed, 288 insertions(+), 72 deletions(-) diff --git a/.github/workflows/test-common.yml b/.github/workflows/test-common.yml index a2774939dc..46f2c57c35 100644 --- a/.github/workflows/test-common.yml +++ b/.github/workflows/test-common.yml @@ -46,7 +46,7 @@ jobs: - name: Setup Test Env run: | - pip install codecov "tox>=3,<4" + pip install "tox>=3,<4" - name: Test common timeout-minutes: 45 @@ -55,10 +55,16 @@ jobs: set -x # print commands that are executed coverage erase + # Run tests ./scripts/runtox.sh "py${{ matrix.python-version }}-common" --cov=tests --cov=sentry_sdk --cov-report= --cov-branch coverage combine .coverage* coverage xml -i - codecov --file coverage.xml + + # Upload coverage report to CodeCov + curl -Os https://uploader.codecov.io/latest/linux/codecov + chmod +x codecov + ./codecov --file coverage.xml + check_required_tests: name: All common tests passed or skipped diff --git a/.github/workflows/test-integration-aiohttp.yml b/.github/workflows/test-integration-aiohttp.yml index 7d27b7ab2b..8e2bde2514 100644 --- a/.github/workflows/test-integration-aiohttp.yml +++ b/.github/workflows/test-integration-aiohttp.yml @@ -46,7 +46,7 @@ jobs: - name: Setup Test Env run: | - pip install codecov "tox>=3,<4" + pip install "tox>=3,<4" - name: Test aiohttp timeout-minutes: 45 @@ -55,10 +55,16 @@ jobs: set -x # print commands that are executed coverage erase + # Run tests ./scripts/runtox.sh "py${{ matrix.python-version }}-aiohttp" --cov=tests --cov=sentry_sdk --cov-report= --cov-branch coverage combine .coverage* coverage xml -i - codecov --file coverage.xml + + # Upload coverage report to CodeCov + curl -Os https://uploader.codecov.io/latest/linux/codecov + chmod +x codecov + ./codecov --file coverage.xml + check_required_tests: name: All aiohttp tests passed or skipped diff --git a/.github/workflows/test-integration-arq.yml b/.github/workflows/test-integration-arq.yml index d4e69133f8..95e0a9564e 100644 --- a/.github/workflows/test-integration-arq.yml +++ b/.github/workflows/test-integration-arq.yml @@ -46,7 +46,7 @@ jobs: - name: Setup Test Env run: | - pip install codecov "tox>=3,<4" + pip install "tox>=3,<4" - name: Test arq timeout-minutes: 45 @@ -55,10 +55,16 @@ jobs: set -x # print commands that are executed coverage erase + # Run tests ./scripts/runtox.sh "py${{ matrix.python-version }}-arq" --cov=tests --cov=sentry_sdk --cov-report= --cov-branch coverage combine .coverage* coverage xml -i - codecov --file coverage.xml + + # Upload coverage report to CodeCov + curl -Os https://uploader.codecov.io/latest/linux/codecov + chmod +x codecov + ./codecov --file coverage.xml + check_required_tests: name: All arq tests passed or skipped diff --git a/.github/workflows/test-integration-asgi.yml b/.github/workflows/test-integration-asgi.yml index 9d1ecd2d79..2da89a1344 100644 --- a/.github/workflows/test-integration-asgi.yml +++ b/.github/workflows/test-integration-asgi.yml @@ -46,7 +46,7 @@ jobs: - name: Setup Test Env run: | - pip install codecov "tox>=3,<4" + pip install "tox>=3,<4" - name: Test asgi timeout-minutes: 45 @@ -55,10 +55,16 @@ jobs: set -x # print commands that are executed coverage erase + # Run tests ./scripts/runtox.sh "py${{ matrix.python-version }}-asgi" --cov=tests --cov=sentry_sdk --cov-report= --cov-branch coverage combine .coverage* coverage xml -i - codecov --file coverage.xml + + # Upload coverage report to CodeCov + curl -Os https://uploader.codecov.io/latest/linux/codecov + chmod +x codecov + ./codecov --file coverage.xml + check_required_tests: name: All asgi tests passed or skipped diff --git a/.github/workflows/test-integration-aws_lambda.yml b/.github/workflows/test-integration-aws_lambda.yml index 3f58e0a271..1397d5de1d 100644 --- a/.github/workflows/test-integration-aws_lambda.yml +++ b/.github/workflows/test-integration-aws_lambda.yml @@ -46,7 +46,7 @@ jobs: - name: Setup Test Env run: | - pip install codecov "tox>=3,<4" + pip install "tox>=3,<4" - name: Test aws_lambda timeout-minutes: 45 @@ -55,10 +55,16 @@ jobs: set -x # print commands that are executed coverage erase + # Run tests ./scripts/runtox.sh "py${{ matrix.python-version }}-aws_lambda" --cov=tests --cov=sentry_sdk --cov-report= --cov-branch coverage combine .coverage* coverage xml -i - codecov --file coverage.xml + + # Upload coverage report to CodeCov + curl -Os https://uploader.codecov.io/latest/linux/codecov + chmod +x codecov + ./codecov --file coverage.xml + check_required_tests: name: All aws_lambda tests passed or skipped diff --git a/.github/workflows/test-integration-beam.yml b/.github/workflows/test-integration-beam.yml index 688ea59d98..77ae40567a 100644 --- a/.github/workflows/test-integration-beam.yml +++ b/.github/workflows/test-integration-beam.yml @@ -46,7 +46,7 @@ jobs: - name: Setup Test Env run: | - pip install codecov "tox>=3,<4" + pip install "tox>=3,<4" - name: Test beam timeout-minutes: 45 @@ -55,10 +55,16 @@ jobs: set -x # print commands that are executed coverage erase + # Run tests ./scripts/runtox.sh "py${{ matrix.python-version }}-beam" --cov=tests --cov=sentry_sdk --cov-report= --cov-branch coverage combine .coverage* coverage xml -i - codecov --file coverage.xml + + # Upload coverage report to CodeCov + curl -Os https://uploader.codecov.io/latest/linux/codecov + chmod +x codecov + ./codecov --file coverage.xml + check_required_tests: name: All beam tests passed or skipped diff --git a/.github/workflows/test-integration-boto3.yml b/.github/workflows/test-integration-boto3.yml index 5ac47b11a6..ffb0dc6580 100644 --- a/.github/workflows/test-integration-boto3.yml +++ b/.github/workflows/test-integration-boto3.yml @@ -46,7 +46,7 @@ jobs: - name: Setup Test Env run: | - pip install codecov "tox>=3,<4" + pip install "tox>=3,<4" - name: Test boto3 timeout-minutes: 45 @@ -55,10 +55,16 @@ jobs: set -x # print commands that are executed coverage erase + # Run tests ./scripts/runtox.sh "py${{ matrix.python-version }}-boto3" --cov=tests --cov=sentry_sdk --cov-report= --cov-branch coverage combine .coverage* coverage xml -i - codecov --file coverage.xml + + # Upload coverage report to CodeCov + curl -Os https://uploader.codecov.io/latest/linux/codecov + chmod +x codecov + ./codecov --file coverage.xml + check_required_tests: name: All boto3 tests passed or skipped diff --git a/.github/workflows/test-integration-bottle.yml b/.github/workflows/test-integration-bottle.yml index ba98aa24fe..07820db530 100644 --- a/.github/workflows/test-integration-bottle.yml +++ b/.github/workflows/test-integration-bottle.yml @@ -46,7 +46,7 @@ jobs: - name: Setup Test Env run: | - pip install codecov "tox>=3,<4" + pip install "tox>=3,<4" - name: Test bottle timeout-minutes: 45 @@ -55,10 +55,16 @@ jobs: set -x # print commands that are executed coverage erase + # Run tests ./scripts/runtox.sh "py${{ matrix.python-version }}-bottle" --cov=tests --cov=sentry_sdk --cov-report= --cov-branch coverage combine .coverage* coverage xml -i - codecov --file coverage.xml + + # Upload coverage report to CodeCov + curl -Os https://uploader.codecov.io/latest/linux/codecov + chmod +x codecov + ./codecov --file coverage.xml + check_required_tests: name: All bottle tests passed or skipped diff --git a/.github/workflows/test-integration-celery.yml b/.github/workflows/test-integration-celery.yml index 4631d53b91..99ae7428c0 100644 --- a/.github/workflows/test-integration-celery.yml +++ b/.github/workflows/test-integration-celery.yml @@ -46,7 +46,7 @@ jobs: - name: Setup Test Env run: | - pip install codecov "tox>=3,<4" + pip install "tox>=3,<4" - name: Test celery timeout-minutes: 45 @@ -55,10 +55,16 @@ jobs: set -x # print commands that are executed coverage erase + # Run tests ./scripts/runtox.sh "py${{ matrix.python-version }}-celery" --cov=tests --cov=sentry_sdk --cov-report= --cov-branch coverage combine .coverage* coverage xml -i - codecov --file coverage.xml + + # Upload coverage report to CodeCov + curl -Os https://uploader.codecov.io/latest/linux/codecov + chmod +x codecov + ./codecov --file coverage.xml + check_required_tests: name: All celery tests passed or skipped diff --git a/.github/workflows/test-integration-chalice.yml b/.github/workflows/test-integration-chalice.yml index f9ec86e447..e17d93e430 100644 --- a/.github/workflows/test-integration-chalice.yml +++ b/.github/workflows/test-integration-chalice.yml @@ -46,7 +46,7 @@ jobs: - name: Setup Test Env run: | - pip install codecov "tox>=3,<4" + pip install "tox>=3,<4" - name: Test chalice timeout-minutes: 45 @@ -55,10 +55,16 @@ jobs: set -x # print commands that are executed coverage erase + # Run tests ./scripts/runtox.sh "py${{ matrix.python-version }}-chalice" --cov=tests --cov=sentry_sdk --cov-report= --cov-branch coverage combine .coverage* coverage xml -i - codecov --file coverage.xml + + # Upload coverage report to CodeCov + curl -Os https://uploader.codecov.io/latest/linux/codecov + chmod +x codecov + ./codecov --file coverage.xml + check_required_tests: name: All chalice tests passed or skipped diff --git a/.github/workflows/test-integration-cloud_resource_context.yml b/.github/workflows/test-integration-cloud_resource_context.yml index bbc99d2ffd..d07f74e558 100644 --- a/.github/workflows/test-integration-cloud_resource_context.yml +++ b/.github/workflows/test-integration-cloud_resource_context.yml @@ -46,7 +46,7 @@ jobs: - name: Setup Test Env run: | - pip install codecov "tox>=3,<4" + pip install "tox>=3,<4" - name: Test cloud_resource_context timeout-minutes: 45 @@ -55,10 +55,16 @@ jobs: set -x # print commands that are executed coverage erase + # Run tests ./scripts/runtox.sh "py${{ matrix.python-version }}-cloud_resource_context" --cov=tests --cov=sentry_sdk --cov-report= --cov-branch coverage combine .coverage* coverage xml -i - codecov --file coverage.xml + + # Upload coverage report to CodeCov + curl -Os https://uploader.codecov.io/latest/linux/codecov + chmod +x codecov + ./codecov --file coverage.xml + check_required_tests: name: All cloud_resource_context tests passed or skipped diff --git a/.github/workflows/test-integration-django.yml b/.github/workflows/test-integration-django.yml index 165c99e8b0..61d0b6c661 100644 --- a/.github/workflows/test-integration-django.yml +++ b/.github/workflows/test-integration-django.yml @@ -64,7 +64,7 @@ jobs: - name: Setup Test Env run: | - pip install codecov "tox>=3,<4" + pip install "tox>=3,<4" - name: Test django timeout-minutes: 45 @@ -73,10 +73,16 @@ jobs: set -x # print commands that are executed coverage erase + # Run tests ./scripts/runtox.sh "py${{ matrix.python-version }}-django" --cov=tests --cov=sentry_sdk --cov-report= --cov-branch coverage combine .coverage* coverage xml -i - codecov --file coverage.xml + + # Upload coverage report to CodeCov + curl -Os https://uploader.codecov.io/latest/linux/codecov + chmod +x codecov + ./codecov --file coverage.xml + check_required_tests: name: All django tests passed or skipped diff --git a/.github/workflows/test-integration-falcon.yml b/.github/workflows/test-integration-falcon.yml index 07af9c87c7..a3bf3da44c 100644 --- a/.github/workflows/test-integration-falcon.yml +++ b/.github/workflows/test-integration-falcon.yml @@ -46,7 +46,7 @@ jobs: - name: Setup Test Env run: | - pip install codecov "tox>=3,<4" + pip install "tox>=3,<4" - name: Test falcon timeout-minutes: 45 @@ -55,10 +55,16 @@ jobs: set -x # print commands that are executed coverage erase + # Run tests ./scripts/runtox.sh "py${{ matrix.python-version }}-falcon" --cov=tests --cov=sentry_sdk --cov-report= --cov-branch coverage combine .coverage* coverage xml -i - codecov --file coverage.xml + + # Upload coverage report to CodeCov + curl -Os https://uploader.codecov.io/latest/linux/codecov + chmod +x codecov + ./codecov --file coverage.xml + check_required_tests: name: All falcon tests passed or skipped diff --git a/.github/workflows/test-integration-fastapi.yml b/.github/workflows/test-integration-fastapi.yml index a3983594fb..9a41df2a24 100644 --- a/.github/workflows/test-integration-fastapi.yml +++ b/.github/workflows/test-integration-fastapi.yml @@ -46,7 +46,7 @@ jobs: - name: Setup Test Env run: | - pip install codecov "tox>=3,<4" + pip install "tox>=3,<4" - name: Test fastapi timeout-minutes: 45 @@ -55,10 +55,16 @@ jobs: set -x # print commands that are executed coverage erase + # Run tests ./scripts/runtox.sh "py${{ matrix.python-version }}-fastapi" --cov=tests --cov=sentry_sdk --cov-report= --cov-branch coverage combine .coverage* coverage xml -i - codecov --file coverage.xml + + # Upload coverage report to CodeCov + curl -Os https://uploader.codecov.io/latest/linux/codecov + chmod +x codecov + ./codecov --file coverage.xml + check_required_tests: name: All fastapi tests passed or skipped diff --git a/.github/workflows/test-integration-flask.yml b/.github/workflows/test-integration-flask.yml index b4b37e80ab..fb7cf57079 100644 --- a/.github/workflows/test-integration-flask.yml +++ b/.github/workflows/test-integration-flask.yml @@ -46,7 +46,7 @@ jobs: - name: Setup Test Env run: | - pip install codecov "tox>=3,<4" + pip install "tox>=3,<4" - name: Test flask timeout-minutes: 45 @@ -55,10 +55,16 @@ jobs: set -x # print commands that are executed coverage erase + # Run tests ./scripts/runtox.sh "py${{ matrix.python-version }}-flask" --cov=tests --cov=sentry_sdk --cov-report= --cov-branch coverage combine .coverage* coverage xml -i - codecov --file coverage.xml + + # Upload coverage report to CodeCov + curl -Os https://uploader.codecov.io/latest/linux/codecov + chmod +x codecov + ./codecov --file coverage.xml + check_required_tests: name: All flask tests passed or skipped diff --git a/.github/workflows/test-integration-gcp.yml b/.github/workflows/test-integration-gcp.yml index 5fe59bdb67..35c39d076c 100644 --- a/.github/workflows/test-integration-gcp.yml +++ b/.github/workflows/test-integration-gcp.yml @@ -46,7 +46,7 @@ jobs: - name: Setup Test Env run: | - pip install codecov "tox>=3,<4" + pip install "tox>=3,<4" - name: Test gcp timeout-minutes: 45 @@ -55,10 +55,16 @@ jobs: set -x # print commands that are executed coverage erase + # Run tests ./scripts/runtox.sh "py${{ matrix.python-version }}-gcp" --cov=tests --cov=sentry_sdk --cov-report= --cov-branch coverage combine .coverage* coverage xml -i - codecov --file coverage.xml + + # Upload coverage report to CodeCov + curl -Os https://uploader.codecov.io/latest/linux/codecov + chmod +x codecov + ./codecov --file coverage.xml + check_required_tests: name: All gcp tests passed or skipped diff --git a/.github/workflows/test-integration-gevent.yml b/.github/workflows/test-integration-gevent.yml index 8c993da6df..4310d15bc6 100644 --- a/.github/workflows/test-integration-gevent.yml +++ b/.github/workflows/test-integration-gevent.yml @@ -46,7 +46,7 @@ jobs: - name: Setup Test Env run: | - pip install codecov "tox>=3,<4" + pip install "tox>=3,<4" - name: Test gevent timeout-minutes: 45 @@ -55,10 +55,16 @@ jobs: set -x # print commands that are executed coverage erase + # Run tests ./scripts/runtox.sh "py${{ matrix.python-version }}-gevent" --cov=tests --cov=sentry_sdk --cov-report= --cov-branch coverage combine .coverage* coverage xml -i - codecov --file coverage.xml + + # Upload coverage report to CodeCov + curl -Os https://uploader.codecov.io/latest/linux/codecov + chmod +x codecov + ./codecov --file coverage.xml + check_required_tests: name: All gevent tests passed or skipped diff --git a/.github/workflows/test-integration-grpc.yml b/.github/workflows/test-integration-grpc.yml index 15cfcca552..290edf2e2f 100644 --- a/.github/workflows/test-integration-grpc.yml +++ b/.github/workflows/test-integration-grpc.yml @@ -46,7 +46,7 @@ jobs: - name: Setup Test Env run: | - pip install codecov "tox>=3,<4" + pip install "tox>=3,<4" - name: Test grpc timeout-minutes: 45 @@ -55,10 +55,16 @@ jobs: set -x # print commands that are executed coverage erase + # Run tests ./scripts/runtox.sh "py${{ matrix.python-version }}-grpc" --cov=tests --cov=sentry_sdk --cov-report= --cov-branch coverage combine .coverage* coverage xml -i - codecov --file coverage.xml + + # Upload coverage report to CodeCov + curl -Os https://uploader.codecov.io/latest/linux/codecov + chmod +x codecov + ./codecov --file coverage.xml + check_required_tests: name: All grpc tests passed or skipped diff --git a/.github/workflows/test-integration-httpx.yml b/.github/workflows/test-integration-httpx.yml index 1154d1586e..9089c4665a 100644 --- a/.github/workflows/test-integration-httpx.yml +++ b/.github/workflows/test-integration-httpx.yml @@ -46,7 +46,7 @@ jobs: - name: Setup Test Env run: | - pip install codecov "tox>=3,<4" + pip install "tox>=3,<4" - name: Test httpx timeout-minutes: 45 @@ -55,10 +55,16 @@ jobs: set -x # print commands that are executed coverage erase + # Run tests ./scripts/runtox.sh "py${{ matrix.python-version }}-httpx" --cov=tests --cov=sentry_sdk --cov-report= --cov-branch coverage combine .coverage* coverage xml -i - codecov --file coverage.xml + + # Upload coverage report to CodeCov + curl -Os https://uploader.codecov.io/latest/linux/codecov + chmod +x codecov + ./codecov --file coverage.xml + check_required_tests: name: All httpx tests passed or skipped diff --git a/.github/workflows/test-integration-huey.yml b/.github/workflows/test-integration-huey.yml index 12eeb52e0b..66562deb20 100644 --- a/.github/workflows/test-integration-huey.yml +++ b/.github/workflows/test-integration-huey.yml @@ -46,7 +46,7 @@ jobs: - name: Setup Test Env run: | - pip install codecov "tox>=3,<4" + pip install "tox>=3,<4" - name: Test huey timeout-minutes: 45 @@ -55,10 +55,16 @@ jobs: set -x # print commands that are executed coverage erase + # Run tests ./scripts/runtox.sh "py${{ matrix.python-version }}-huey" --cov=tests --cov=sentry_sdk --cov-report= --cov-branch coverage combine .coverage* coverage xml -i - codecov --file coverage.xml + + # Upload coverage report to CodeCov + curl -Os https://uploader.codecov.io/latest/linux/codecov + chmod +x codecov + ./codecov --file coverage.xml + check_required_tests: name: All huey tests passed or skipped diff --git a/.github/workflows/test-integration-opentelemetry.yml b/.github/workflows/test-integration-opentelemetry.yml index ccbe4d2a63..57e21af61a 100644 --- a/.github/workflows/test-integration-opentelemetry.yml +++ b/.github/workflows/test-integration-opentelemetry.yml @@ -46,7 +46,7 @@ jobs: - name: Setup Test Env run: | - pip install codecov "tox>=3,<4" + pip install "tox>=3,<4" - name: Test opentelemetry timeout-minutes: 45 @@ -55,10 +55,16 @@ jobs: set -x # print commands that are executed coverage erase + # Run tests ./scripts/runtox.sh "py${{ matrix.python-version }}-opentelemetry" --cov=tests --cov=sentry_sdk --cov-report= --cov-branch coverage combine .coverage* coverage xml -i - codecov --file coverage.xml + + # Upload coverage report to CodeCov + curl -Os https://uploader.codecov.io/latest/linux/codecov + chmod +x codecov + ./codecov --file coverage.xml + check_required_tests: name: All opentelemetry tests passed or skipped diff --git a/.github/workflows/test-integration-pure_eval.yml b/.github/workflows/test-integration-pure_eval.yml index 813749bf98..2a00d14259 100644 --- a/.github/workflows/test-integration-pure_eval.yml +++ b/.github/workflows/test-integration-pure_eval.yml @@ -46,7 +46,7 @@ jobs: - name: Setup Test Env run: | - pip install codecov "tox>=3,<4" + pip install "tox>=3,<4" - name: Test pure_eval timeout-minutes: 45 @@ -55,10 +55,16 @@ jobs: set -x # print commands that are executed coverage erase + # Run tests ./scripts/runtox.sh "py${{ matrix.python-version }}-pure_eval" --cov=tests --cov=sentry_sdk --cov-report= --cov-branch coverage combine .coverage* coverage xml -i - codecov --file coverage.xml + + # Upload coverage report to CodeCov + curl -Os https://uploader.codecov.io/latest/linux/codecov + chmod +x codecov + ./codecov --file coverage.xml + check_required_tests: name: All pure_eval tests passed or skipped diff --git a/.github/workflows/test-integration-pymongo.yml b/.github/workflows/test-integration-pymongo.yml index 49bb67e7fe..2a2bf59a00 100644 --- a/.github/workflows/test-integration-pymongo.yml +++ b/.github/workflows/test-integration-pymongo.yml @@ -46,7 +46,7 @@ jobs: - name: Setup Test Env run: | - pip install codecov "tox>=3,<4" + pip install "tox>=3,<4" - name: Test pymongo timeout-minutes: 45 @@ -55,10 +55,16 @@ jobs: set -x # print commands that are executed coverage erase + # Run tests ./scripts/runtox.sh "py${{ matrix.python-version }}-pymongo" --cov=tests --cov=sentry_sdk --cov-report= --cov-branch coverage combine .coverage* coverage xml -i - codecov --file coverage.xml + + # Upload coverage report to CodeCov + curl -Os https://uploader.codecov.io/latest/linux/codecov + chmod +x codecov + ./codecov --file coverage.xml + check_required_tests: name: All pymongo tests passed or skipped diff --git a/.github/workflows/test-integration-pyramid.yml b/.github/workflows/test-integration-pyramid.yml index 1c1fc8d416..b00215b03f 100644 --- a/.github/workflows/test-integration-pyramid.yml +++ b/.github/workflows/test-integration-pyramid.yml @@ -46,7 +46,7 @@ jobs: - name: Setup Test Env run: | - pip install codecov "tox>=3,<4" + pip install "tox>=3,<4" - name: Test pyramid timeout-minutes: 45 @@ -55,10 +55,16 @@ jobs: set -x # print commands that are executed coverage erase + # Run tests ./scripts/runtox.sh "py${{ matrix.python-version }}-pyramid" --cov=tests --cov=sentry_sdk --cov-report= --cov-branch coverage combine .coverage* coverage xml -i - codecov --file coverage.xml + + # Upload coverage report to CodeCov + curl -Os https://uploader.codecov.io/latest/linux/codecov + chmod +x codecov + ./codecov --file coverage.xml + check_required_tests: name: All pyramid tests passed or skipped diff --git a/.github/workflows/test-integration-quart.yml b/.github/workflows/test-integration-quart.yml index 5de9f92b35..08be72bcc1 100644 --- a/.github/workflows/test-integration-quart.yml +++ b/.github/workflows/test-integration-quart.yml @@ -46,7 +46,7 @@ jobs: - name: Setup Test Env run: | - pip install codecov "tox>=3,<4" + pip install "tox>=3,<4" - name: Test quart timeout-minutes: 45 @@ -55,10 +55,16 @@ jobs: set -x # print commands that are executed coverage erase + # Run tests ./scripts/runtox.sh "py${{ matrix.python-version }}-quart" --cov=tests --cov=sentry_sdk --cov-report= --cov-branch coverage combine .coverage* coverage xml -i - codecov --file coverage.xml + + # Upload coverage report to CodeCov + curl -Os https://uploader.codecov.io/latest/linux/codecov + chmod +x codecov + ./codecov --file coverage.xml + check_required_tests: name: All quart tests passed or skipped diff --git a/.github/workflows/test-integration-redis.yml b/.github/workflows/test-integration-redis.yml index c612ca4ca3..cf32f4d35b 100644 --- a/.github/workflows/test-integration-redis.yml +++ b/.github/workflows/test-integration-redis.yml @@ -46,7 +46,7 @@ jobs: - name: Setup Test Env run: | - pip install codecov "tox>=3,<4" + pip install "tox>=3,<4" - name: Test redis timeout-minutes: 45 @@ -55,10 +55,16 @@ jobs: set -x # print commands that are executed coverage erase + # Run tests ./scripts/runtox.sh "py${{ matrix.python-version }}-redis" --cov=tests --cov=sentry_sdk --cov-report= --cov-branch coverage combine .coverage* coverage xml -i - codecov --file coverage.xml + + # Upload coverage report to CodeCov + curl -Os https://uploader.codecov.io/latest/linux/codecov + chmod +x codecov + ./codecov --file coverage.xml + check_required_tests: name: All redis tests passed or skipped diff --git a/.github/workflows/test-integration-rediscluster.yml b/.github/workflows/test-integration-rediscluster.yml index 102838def1..fc25be9c70 100644 --- a/.github/workflows/test-integration-rediscluster.yml +++ b/.github/workflows/test-integration-rediscluster.yml @@ -46,7 +46,7 @@ jobs: - name: Setup Test Env run: | - pip install codecov "tox>=3,<4" + pip install "tox>=3,<4" - name: Test rediscluster timeout-minutes: 45 @@ -55,10 +55,16 @@ jobs: set -x # print commands that are executed coverage erase + # Run tests ./scripts/runtox.sh "py${{ matrix.python-version }}-rediscluster" --cov=tests --cov=sentry_sdk --cov-report= --cov-branch coverage combine .coverage* coverage xml -i - codecov --file coverage.xml + + # Upload coverage report to CodeCov + curl -Os https://uploader.codecov.io/latest/linux/codecov + chmod +x codecov + ./codecov --file coverage.xml + check_required_tests: name: All rediscluster tests passed or skipped diff --git a/.github/workflows/test-integration-requests.yml b/.github/workflows/test-integration-requests.yml index f4fcc1a170..255b0d69a4 100644 --- a/.github/workflows/test-integration-requests.yml +++ b/.github/workflows/test-integration-requests.yml @@ -46,7 +46,7 @@ jobs: - name: Setup Test Env run: | - pip install codecov "tox>=3,<4" + pip install "tox>=3,<4" - name: Test requests timeout-minutes: 45 @@ -55,10 +55,16 @@ jobs: set -x # print commands that are executed coverage erase + # Run tests ./scripts/runtox.sh "py${{ matrix.python-version }}-requests" --cov=tests --cov=sentry_sdk --cov-report= --cov-branch coverage combine .coverage* coverage xml -i - codecov --file coverage.xml + + # Upload coverage report to CodeCov + curl -Os https://uploader.codecov.io/latest/linux/codecov + chmod +x codecov + ./codecov --file coverage.xml + check_required_tests: name: All requests tests passed or skipped diff --git a/.github/workflows/test-integration-rq.yml b/.github/workflows/test-integration-rq.yml index 132a87b35c..03743452c8 100644 --- a/.github/workflows/test-integration-rq.yml +++ b/.github/workflows/test-integration-rq.yml @@ -46,7 +46,7 @@ jobs: - name: Setup Test Env run: | - pip install codecov "tox>=3,<4" + pip install "tox>=3,<4" - name: Test rq timeout-minutes: 45 @@ -55,10 +55,16 @@ jobs: set -x # print commands that are executed coverage erase + # Run tests ./scripts/runtox.sh "py${{ matrix.python-version }}-rq" --cov=tests --cov=sentry_sdk --cov-report= --cov-branch coverage combine .coverage* coverage xml -i - codecov --file coverage.xml + + # Upload coverage report to CodeCov + curl -Os https://uploader.codecov.io/latest/linux/codecov + chmod +x codecov + ./codecov --file coverage.xml + check_required_tests: name: All rq tests passed or skipped diff --git a/.github/workflows/test-integration-sanic.yml b/.github/workflows/test-integration-sanic.yml index cbdfb3e142..299a54028f 100644 --- a/.github/workflows/test-integration-sanic.yml +++ b/.github/workflows/test-integration-sanic.yml @@ -46,7 +46,7 @@ jobs: - name: Setup Test Env run: | - pip install codecov "tox>=3,<4" + pip install "tox>=3,<4" - name: Test sanic timeout-minutes: 45 @@ -55,10 +55,16 @@ jobs: set -x # print commands that are executed coverage erase + # Run tests ./scripts/runtox.sh "py${{ matrix.python-version }}-sanic" --cov=tests --cov=sentry_sdk --cov-report= --cov-branch coverage combine .coverage* coverage xml -i - codecov --file coverage.xml + + # Upload coverage report to CodeCov + curl -Os https://uploader.codecov.io/latest/linux/codecov + chmod +x codecov + ./codecov --file coverage.xml + check_required_tests: name: All sanic tests passed or skipped diff --git a/.github/workflows/test-integration-sqlalchemy.yml b/.github/workflows/test-integration-sqlalchemy.yml index c9b011571d..187bdff940 100644 --- a/.github/workflows/test-integration-sqlalchemy.yml +++ b/.github/workflows/test-integration-sqlalchemy.yml @@ -46,7 +46,7 @@ jobs: - name: Setup Test Env run: | - pip install codecov "tox>=3,<4" + pip install "tox>=3,<4" - name: Test sqlalchemy timeout-minutes: 45 @@ -55,10 +55,16 @@ jobs: set -x # print commands that are executed coverage erase + # Run tests ./scripts/runtox.sh "py${{ matrix.python-version }}-sqlalchemy" --cov=tests --cov=sentry_sdk --cov-report= --cov-branch coverage combine .coverage* coverage xml -i - codecov --file coverage.xml + + # Upload coverage report to CodeCov + curl -Os https://uploader.codecov.io/latest/linux/codecov + chmod +x codecov + ./codecov --file coverage.xml + check_required_tests: name: All sqlalchemy tests passed or skipped diff --git a/.github/workflows/test-integration-starlette.yml b/.github/workflows/test-integration-starlette.yml index 464e603693..5895b47086 100644 --- a/.github/workflows/test-integration-starlette.yml +++ b/.github/workflows/test-integration-starlette.yml @@ -46,7 +46,7 @@ jobs: - name: Setup Test Env run: | - pip install codecov "tox>=3,<4" + pip install "tox>=3,<4" - name: Test starlette timeout-minutes: 45 @@ -55,10 +55,16 @@ jobs: set -x # print commands that are executed coverage erase + # Run tests ./scripts/runtox.sh "py${{ matrix.python-version }}-starlette" --cov=tests --cov=sentry_sdk --cov-report= --cov-branch coverage combine .coverage* coverage xml -i - codecov --file coverage.xml + + # Upload coverage report to CodeCov + curl -Os https://uploader.codecov.io/latest/linux/codecov + chmod +x codecov + ./codecov --file coverage.xml + check_required_tests: name: All starlette tests passed or skipped diff --git a/.github/workflows/test-integration-starlite.yml b/.github/workflows/test-integration-starlite.yml index f36ec659fb..4cc48bb53a 100644 --- a/.github/workflows/test-integration-starlite.yml +++ b/.github/workflows/test-integration-starlite.yml @@ -46,7 +46,7 @@ jobs: - name: Setup Test Env run: | - pip install codecov "tox>=3,<4" + pip install "tox>=3,<4" - name: Test starlite timeout-minutes: 45 @@ -55,10 +55,16 @@ jobs: set -x # print commands that are executed coverage erase + # Run tests ./scripts/runtox.sh "py${{ matrix.python-version }}-starlite" --cov=tests --cov=sentry_sdk --cov-report= --cov-branch coverage combine .coverage* coverage xml -i - codecov --file coverage.xml + + # Upload coverage report to CodeCov + curl -Os https://uploader.codecov.io/latest/linux/codecov + chmod +x codecov + ./codecov --file coverage.xml + check_required_tests: name: All starlite tests passed or skipped diff --git a/.github/workflows/test-integration-tornado.yml b/.github/workflows/test-integration-tornado.yml index 32f66a6ab3..00d311e8d5 100644 --- a/.github/workflows/test-integration-tornado.yml +++ b/.github/workflows/test-integration-tornado.yml @@ -46,7 +46,7 @@ jobs: - name: Setup Test Env run: | - pip install codecov "tox>=3,<4" + pip install "tox>=3,<4" - name: Test tornado timeout-minutes: 45 @@ -55,10 +55,16 @@ jobs: set -x # print commands that are executed coverage erase + # Run tests ./scripts/runtox.sh "py${{ matrix.python-version }}-tornado" --cov=tests --cov=sentry_sdk --cov-report= --cov-branch coverage combine .coverage* coverage xml -i - codecov --file coverage.xml + + # Upload coverage report to CodeCov + curl -Os https://uploader.codecov.io/latest/linux/codecov + chmod +x codecov + ./codecov --file coverage.xml + check_required_tests: name: All tornado tests passed or skipped diff --git a/.github/workflows/test-integration-trytond.yml b/.github/workflows/test-integration-trytond.yml index 83456a4235..b8f7b14ca6 100644 --- a/.github/workflows/test-integration-trytond.yml +++ b/.github/workflows/test-integration-trytond.yml @@ -46,7 +46,7 @@ jobs: - name: Setup Test Env run: | - pip install codecov "tox>=3,<4" + pip install "tox>=3,<4" - name: Test trytond timeout-minutes: 45 @@ -55,10 +55,16 @@ jobs: set -x # print commands that are executed coverage erase + # Run tests ./scripts/runtox.sh "py${{ matrix.python-version }}-trytond" --cov=tests --cov=sentry_sdk --cov-report= --cov-branch coverage combine .coverage* coverage xml -i - codecov --file coverage.xml + + # Upload coverage report to CodeCov + curl -Os https://uploader.codecov.io/latest/linux/codecov + chmod +x codecov + ./codecov --file coverage.xml + check_required_tests: name: All trytond tests passed or skipped diff --git a/scripts/split-tox-gh-actions/ci-yaml.txt b/scripts/split-tox-gh-actions/ci-yaml.txt index 7f3fa6b037..ac1a337c25 100644 --- a/scripts/split-tox-gh-actions/ci-yaml.txt +++ b/scripts/split-tox-gh-actions/ci-yaml.txt @@ -38,7 +38,7 @@ jobs: - name: Setup Test Env run: | - pip install codecov "tox>=3,<4" + pip install "tox>=3,<4" - name: Test {{ framework }} timeout-minutes: 45 @@ -47,10 +47,16 @@ jobs: set -x # print commands that are executed coverage erase + # Run tests ./scripts/runtox.sh "py${{ matrix.python-version }}-{{ framework }}" --cov=tests --cov=sentry_sdk --cov-report= --cov-branch coverage combine .coverage* coverage xml -i - codecov --file coverage.xml + + # Upload coverage report to CodeCov + curl -Os https://uploader.codecov.io/latest/linux/codecov + chmod +x codecov + ./codecov --file coverage.xml + check_required_tests: name: All {{ framework }} tests passed or skipped From 983a3a6b80fa9f511e6dc2d262d3e78c76535255 Mon Sep 17 00:00:00 2001 From: Anton Pirker Date: Thu, 13 Apr 2023 15:44:05 +0200 Subject: [PATCH 2/5] Added missing package --- .github/workflows/test-common.yml | 2 +- .github/workflows/test-integration-aiohttp.yml | 2 +- .github/workflows/test-integration-arq.yml | 2 +- .github/workflows/test-integration-asgi.yml | 2 +- .github/workflows/test-integration-aws_lambda.yml | 2 +- .github/workflows/test-integration-beam.yml | 2 +- .github/workflows/test-integration-boto3.yml | 2 +- .github/workflows/test-integration-bottle.yml | 2 +- .github/workflows/test-integration-celery.yml | 2 +- .github/workflows/test-integration-chalice.yml | 2 +- .github/workflows/test-integration-cloud_resource_context.yml | 2 +- .github/workflows/test-integration-django.yml | 2 +- .github/workflows/test-integration-falcon.yml | 2 +- .github/workflows/test-integration-fastapi.yml | 2 +- .github/workflows/test-integration-flask.yml | 2 +- .github/workflows/test-integration-gcp.yml | 2 +- .github/workflows/test-integration-gevent.yml | 2 +- .github/workflows/test-integration-grpc.yml | 2 +- .github/workflows/test-integration-httpx.yml | 2 +- .github/workflows/test-integration-huey.yml | 2 +- .github/workflows/test-integration-opentelemetry.yml | 2 +- .github/workflows/test-integration-pure_eval.yml | 2 +- .github/workflows/test-integration-pymongo.yml | 2 +- .github/workflows/test-integration-pyramid.yml | 2 +- .github/workflows/test-integration-quart.yml | 2 +- .github/workflows/test-integration-redis.yml | 2 +- .github/workflows/test-integration-rediscluster.yml | 2 +- .github/workflows/test-integration-requests.yml | 2 +- .github/workflows/test-integration-rq.yml | 2 +- .github/workflows/test-integration-sanic.yml | 2 +- .github/workflows/test-integration-sqlalchemy.yml | 2 +- .github/workflows/test-integration-starlette.yml | 2 +- .github/workflows/test-integration-starlite.yml | 2 +- .github/workflows/test-integration-tornado.yml | 2 +- .github/workflows/test-integration-trytond.yml | 2 +- scripts/split-tox-gh-actions/ci-yaml.txt | 2 +- 36 files changed, 36 insertions(+), 36 deletions(-) diff --git a/.github/workflows/test-common.yml b/.github/workflows/test-common.yml index 46f2c57c35..ac2a12ad19 100644 --- a/.github/workflows/test-common.yml +++ b/.github/workflows/test-common.yml @@ -46,7 +46,7 @@ jobs: - name: Setup Test Env run: | - pip install "tox>=3,<4" + pip install coverage "tox>=3,<4" - name: Test common timeout-minutes: 45 diff --git a/.github/workflows/test-integration-aiohttp.yml b/.github/workflows/test-integration-aiohttp.yml index 8e2bde2514..cb7dfb8183 100644 --- a/.github/workflows/test-integration-aiohttp.yml +++ b/.github/workflows/test-integration-aiohttp.yml @@ -46,7 +46,7 @@ jobs: - name: Setup Test Env run: | - pip install "tox>=3,<4" + pip install coverage "tox>=3,<4" - name: Test aiohttp timeout-minutes: 45 diff --git a/.github/workflows/test-integration-arq.yml b/.github/workflows/test-integration-arq.yml index 95e0a9564e..106590ed9e 100644 --- a/.github/workflows/test-integration-arq.yml +++ b/.github/workflows/test-integration-arq.yml @@ -46,7 +46,7 @@ jobs: - name: Setup Test Env run: | - pip install "tox>=3,<4" + pip install coverage "tox>=3,<4" - name: Test arq timeout-minutes: 45 diff --git a/.github/workflows/test-integration-asgi.yml b/.github/workflows/test-integration-asgi.yml index 2da89a1344..c0628bcede 100644 --- a/.github/workflows/test-integration-asgi.yml +++ b/.github/workflows/test-integration-asgi.yml @@ -46,7 +46,7 @@ jobs: - name: Setup Test Env run: | - pip install "tox>=3,<4" + pip install coverage "tox>=3,<4" - name: Test asgi timeout-minutes: 45 diff --git a/.github/workflows/test-integration-aws_lambda.yml b/.github/workflows/test-integration-aws_lambda.yml index 1397d5de1d..777181dd23 100644 --- a/.github/workflows/test-integration-aws_lambda.yml +++ b/.github/workflows/test-integration-aws_lambda.yml @@ -46,7 +46,7 @@ jobs: - name: Setup Test Env run: | - pip install "tox>=3,<4" + pip install coverage "tox>=3,<4" - name: Test aws_lambda timeout-minutes: 45 diff --git a/.github/workflows/test-integration-beam.yml b/.github/workflows/test-integration-beam.yml index 77ae40567a..3d12663e03 100644 --- a/.github/workflows/test-integration-beam.yml +++ b/.github/workflows/test-integration-beam.yml @@ -46,7 +46,7 @@ jobs: - name: Setup Test Env run: | - pip install "tox>=3,<4" + pip install coverage "tox>=3,<4" - name: Test beam timeout-minutes: 45 diff --git a/.github/workflows/test-integration-boto3.yml b/.github/workflows/test-integration-boto3.yml index ffb0dc6580..77f62cf437 100644 --- a/.github/workflows/test-integration-boto3.yml +++ b/.github/workflows/test-integration-boto3.yml @@ -46,7 +46,7 @@ jobs: - name: Setup Test Env run: | - pip install "tox>=3,<4" + pip install coverage "tox>=3,<4" - name: Test boto3 timeout-minutes: 45 diff --git a/.github/workflows/test-integration-bottle.yml b/.github/workflows/test-integration-bottle.yml index 07820db530..c55a74f5c3 100644 --- a/.github/workflows/test-integration-bottle.yml +++ b/.github/workflows/test-integration-bottle.yml @@ -46,7 +46,7 @@ jobs: - name: Setup Test Env run: | - pip install "tox>=3,<4" + pip install coverage "tox>=3,<4" - name: Test bottle timeout-minutes: 45 diff --git a/.github/workflows/test-integration-celery.yml b/.github/workflows/test-integration-celery.yml index 99ae7428c0..484636485d 100644 --- a/.github/workflows/test-integration-celery.yml +++ b/.github/workflows/test-integration-celery.yml @@ -46,7 +46,7 @@ jobs: - name: Setup Test Env run: | - pip install "tox>=3,<4" + pip install coverage "tox>=3,<4" - name: Test celery timeout-minutes: 45 diff --git a/.github/workflows/test-integration-chalice.yml b/.github/workflows/test-integration-chalice.yml index e17d93e430..678394b6fc 100644 --- a/.github/workflows/test-integration-chalice.yml +++ b/.github/workflows/test-integration-chalice.yml @@ -46,7 +46,7 @@ jobs: - name: Setup Test Env run: | - pip install "tox>=3,<4" + pip install coverage "tox>=3,<4" - name: Test chalice timeout-minutes: 45 diff --git a/.github/workflows/test-integration-cloud_resource_context.yml b/.github/workflows/test-integration-cloud_resource_context.yml index d07f74e558..20ef9ca5d5 100644 --- a/.github/workflows/test-integration-cloud_resource_context.yml +++ b/.github/workflows/test-integration-cloud_resource_context.yml @@ -46,7 +46,7 @@ jobs: - name: Setup Test Env run: | - pip install "tox>=3,<4" + pip install coverage "tox>=3,<4" - name: Test cloud_resource_context timeout-minutes: 45 diff --git a/.github/workflows/test-integration-django.yml b/.github/workflows/test-integration-django.yml index 61d0b6c661..5bda32f8f6 100644 --- a/.github/workflows/test-integration-django.yml +++ b/.github/workflows/test-integration-django.yml @@ -64,7 +64,7 @@ jobs: - name: Setup Test Env run: | - pip install "tox>=3,<4" + pip install coverage "tox>=3,<4" - name: Test django timeout-minutes: 45 diff --git a/.github/workflows/test-integration-falcon.yml b/.github/workflows/test-integration-falcon.yml index a3bf3da44c..015c9a8daf 100644 --- a/.github/workflows/test-integration-falcon.yml +++ b/.github/workflows/test-integration-falcon.yml @@ -46,7 +46,7 @@ jobs: - name: Setup Test Env run: | - pip install "tox>=3,<4" + pip install coverage "tox>=3,<4" - name: Test falcon timeout-minutes: 45 diff --git a/.github/workflows/test-integration-fastapi.yml b/.github/workflows/test-integration-fastapi.yml index 9a41df2a24..e6cd489180 100644 --- a/.github/workflows/test-integration-fastapi.yml +++ b/.github/workflows/test-integration-fastapi.yml @@ -46,7 +46,7 @@ jobs: - name: Setup Test Env run: | - pip install "tox>=3,<4" + pip install coverage "tox>=3,<4" - name: Test fastapi timeout-minutes: 45 diff --git a/.github/workflows/test-integration-flask.yml b/.github/workflows/test-integration-flask.yml index fb7cf57079..1173a1dd7a 100644 --- a/.github/workflows/test-integration-flask.yml +++ b/.github/workflows/test-integration-flask.yml @@ -46,7 +46,7 @@ jobs: - name: Setup Test Env run: | - pip install "tox>=3,<4" + pip install coverage "tox>=3,<4" - name: Test flask timeout-minutes: 45 diff --git a/.github/workflows/test-integration-gcp.yml b/.github/workflows/test-integration-gcp.yml index 35c39d076c..93c4e94be8 100644 --- a/.github/workflows/test-integration-gcp.yml +++ b/.github/workflows/test-integration-gcp.yml @@ -46,7 +46,7 @@ jobs: - name: Setup Test Env run: | - pip install "tox>=3,<4" + pip install coverage "tox>=3,<4" - name: Test gcp timeout-minutes: 45 diff --git a/.github/workflows/test-integration-gevent.yml b/.github/workflows/test-integration-gevent.yml index 4310d15bc6..c047fffb03 100644 --- a/.github/workflows/test-integration-gevent.yml +++ b/.github/workflows/test-integration-gevent.yml @@ -46,7 +46,7 @@ jobs: - name: Setup Test Env run: | - pip install "tox>=3,<4" + pip install coverage "tox>=3,<4" - name: Test gevent timeout-minutes: 45 diff --git a/.github/workflows/test-integration-grpc.yml b/.github/workflows/test-integration-grpc.yml index 290edf2e2f..974f034f60 100644 --- a/.github/workflows/test-integration-grpc.yml +++ b/.github/workflows/test-integration-grpc.yml @@ -46,7 +46,7 @@ jobs: - name: Setup Test Env run: | - pip install "tox>=3,<4" + pip install coverage "tox>=3,<4" - name: Test grpc timeout-minutes: 45 diff --git a/.github/workflows/test-integration-httpx.yml b/.github/workflows/test-integration-httpx.yml index 9089c4665a..f62563f4a1 100644 --- a/.github/workflows/test-integration-httpx.yml +++ b/.github/workflows/test-integration-httpx.yml @@ -46,7 +46,7 @@ jobs: - name: Setup Test Env run: | - pip install "tox>=3,<4" + pip install coverage "tox>=3,<4" - name: Test httpx timeout-minutes: 45 diff --git a/.github/workflows/test-integration-huey.yml b/.github/workflows/test-integration-huey.yml index 66562deb20..323a399eee 100644 --- a/.github/workflows/test-integration-huey.yml +++ b/.github/workflows/test-integration-huey.yml @@ -46,7 +46,7 @@ jobs: - name: Setup Test Env run: | - pip install "tox>=3,<4" + pip install coverage "tox>=3,<4" - name: Test huey timeout-minutes: 45 diff --git a/.github/workflows/test-integration-opentelemetry.yml b/.github/workflows/test-integration-opentelemetry.yml index 57e21af61a..f1dce10d0c 100644 --- a/.github/workflows/test-integration-opentelemetry.yml +++ b/.github/workflows/test-integration-opentelemetry.yml @@ -46,7 +46,7 @@ jobs: - name: Setup Test Env run: | - pip install "tox>=3,<4" + pip install coverage "tox>=3,<4" - name: Test opentelemetry timeout-minutes: 45 diff --git a/.github/workflows/test-integration-pure_eval.yml b/.github/workflows/test-integration-pure_eval.yml index 2a00d14259..c9bb0360d1 100644 --- a/.github/workflows/test-integration-pure_eval.yml +++ b/.github/workflows/test-integration-pure_eval.yml @@ -46,7 +46,7 @@ jobs: - name: Setup Test Env run: | - pip install "tox>=3,<4" + pip install coverage "tox>=3,<4" - name: Test pure_eval timeout-minutes: 45 diff --git a/.github/workflows/test-integration-pymongo.yml b/.github/workflows/test-integration-pymongo.yml index 2a2bf59a00..f7551875f4 100644 --- a/.github/workflows/test-integration-pymongo.yml +++ b/.github/workflows/test-integration-pymongo.yml @@ -46,7 +46,7 @@ jobs: - name: Setup Test Env run: | - pip install "tox>=3,<4" + pip install coverage "tox>=3,<4" - name: Test pymongo timeout-minutes: 45 diff --git a/.github/workflows/test-integration-pyramid.yml b/.github/workflows/test-integration-pyramid.yml index b00215b03f..cb952899b8 100644 --- a/.github/workflows/test-integration-pyramid.yml +++ b/.github/workflows/test-integration-pyramid.yml @@ -46,7 +46,7 @@ jobs: - name: Setup Test Env run: | - pip install "tox>=3,<4" + pip install coverage "tox>=3,<4" - name: Test pyramid timeout-minutes: 45 diff --git a/.github/workflows/test-integration-quart.yml b/.github/workflows/test-integration-quart.yml index 08be72bcc1..871a9dc669 100644 --- a/.github/workflows/test-integration-quart.yml +++ b/.github/workflows/test-integration-quart.yml @@ -46,7 +46,7 @@ jobs: - name: Setup Test Env run: | - pip install "tox>=3,<4" + pip install coverage "tox>=3,<4" - name: Test quart timeout-minutes: 45 diff --git a/.github/workflows/test-integration-redis.yml b/.github/workflows/test-integration-redis.yml index cf32f4d35b..10329faf75 100644 --- a/.github/workflows/test-integration-redis.yml +++ b/.github/workflows/test-integration-redis.yml @@ -46,7 +46,7 @@ jobs: - name: Setup Test Env run: | - pip install "tox>=3,<4" + pip install coverage "tox>=3,<4" - name: Test redis timeout-minutes: 45 diff --git a/.github/workflows/test-integration-rediscluster.yml b/.github/workflows/test-integration-rediscluster.yml index fc25be9c70..ecbcf42567 100644 --- a/.github/workflows/test-integration-rediscluster.yml +++ b/.github/workflows/test-integration-rediscluster.yml @@ -46,7 +46,7 @@ jobs: - name: Setup Test Env run: | - pip install "tox>=3,<4" + pip install coverage "tox>=3,<4" - name: Test rediscluster timeout-minutes: 45 diff --git a/.github/workflows/test-integration-requests.yml b/.github/workflows/test-integration-requests.yml index 255b0d69a4..2218572cbd 100644 --- a/.github/workflows/test-integration-requests.yml +++ b/.github/workflows/test-integration-requests.yml @@ -46,7 +46,7 @@ jobs: - name: Setup Test Env run: | - pip install "tox>=3,<4" + pip install coverage "tox>=3,<4" - name: Test requests timeout-minutes: 45 diff --git a/.github/workflows/test-integration-rq.yml b/.github/workflows/test-integration-rq.yml index 03743452c8..2ea4ae7658 100644 --- a/.github/workflows/test-integration-rq.yml +++ b/.github/workflows/test-integration-rq.yml @@ -46,7 +46,7 @@ jobs: - name: Setup Test Env run: | - pip install "tox>=3,<4" + pip install coverage "tox>=3,<4" - name: Test rq timeout-minutes: 45 diff --git a/.github/workflows/test-integration-sanic.yml b/.github/workflows/test-integration-sanic.yml index 299a54028f..f872fc5f99 100644 --- a/.github/workflows/test-integration-sanic.yml +++ b/.github/workflows/test-integration-sanic.yml @@ -46,7 +46,7 @@ jobs: - name: Setup Test Env run: | - pip install "tox>=3,<4" + pip install coverage "tox>=3,<4" - name: Test sanic timeout-minutes: 45 diff --git a/.github/workflows/test-integration-sqlalchemy.yml b/.github/workflows/test-integration-sqlalchemy.yml index 187bdff940..0145ceea34 100644 --- a/.github/workflows/test-integration-sqlalchemy.yml +++ b/.github/workflows/test-integration-sqlalchemy.yml @@ -46,7 +46,7 @@ jobs: - name: Setup Test Env run: | - pip install "tox>=3,<4" + pip install coverage "tox>=3,<4" - name: Test sqlalchemy timeout-minutes: 45 diff --git a/.github/workflows/test-integration-starlette.yml b/.github/workflows/test-integration-starlette.yml index 5895b47086..195e258f65 100644 --- a/.github/workflows/test-integration-starlette.yml +++ b/.github/workflows/test-integration-starlette.yml @@ -46,7 +46,7 @@ jobs: - name: Setup Test Env run: | - pip install "tox>=3,<4" + pip install coverage "tox>=3,<4" - name: Test starlette timeout-minutes: 45 diff --git a/.github/workflows/test-integration-starlite.yml b/.github/workflows/test-integration-starlite.yml index 4cc48bb53a..f1e8a1be9c 100644 --- a/.github/workflows/test-integration-starlite.yml +++ b/.github/workflows/test-integration-starlite.yml @@ -46,7 +46,7 @@ jobs: - name: Setup Test Env run: | - pip install "tox>=3,<4" + pip install coverage "tox>=3,<4" - name: Test starlite timeout-minutes: 45 diff --git a/.github/workflows/test-integration-tornado.yml b/.github/workflows/test-integration-tornado.yml index 00d311e8d5..128fe82817 100644 --- a/.github/workflows/test-integration-tornado.yml +++ b/.github/workflows/test-integration-tornado.yml @@ -46,7 +46,7 @@ jobs: - name: Setup Test Env run: | - pip install "tox>=3,<4" + pip install coverage "tox>=3,<4" - name: Test tornado timeout-minutes: 45 diff --git a/.github/workflows/test-integration-trytond.yml b/.github/workflows/test-integration-trytond.yml index b8f7b14ca6..f89ee5ca05 100644 --- a/.github/workflows/test-integration-trytond.yml +++ b/.github/workflows/test-integration-trytond.yml @@ -46,7 +46,7 @@ jobs: - name: Setup Test Env run: | - pip install "tox>=3,<4" + pip install coverage "tox>=3,<4" - name: Test trytond timeout-minutes: 45 diff --git a/scripts/split-tox-gh-actions/ci-yaml.txt b/scripts/split-tox-gh-actions/ci-yaml.txt index ac1a337c25..9e928f82f2 100644 --- a/scripts/split-tox-gh-actions/ci-yaml.txt +++ b/scripts/split-tox-gh-actions/ci-yaml.txt @@ -38,7 +38,7 @@ jobs: - name: Setup Test Env run: | - pip install "tox>=3,<4" + pip install coverage "tox>=3,<4" - name: Test {{ framework }} timeout-minutes: 45 From d983732de83a742a204428b0eefe307b5e5de3fe Mon Sep 17 00:00:00 2001 From: Anton Pirker Date: Thu, 13 Apr 2023 15:58:56 +0200 Subject: [PATCH 3/5] Trying the codecov github action --- .github/workflows/test-common.yml | 10 +++++----- .github/workflows/test-integration-aiohttp.yml | 10 +++++----- .github/workflows/test-integration-arq.yml | 10 +++++----- .github/workflows/test-integration-asgi.yml | 10 +++++----- .github/workflows/test-integration-aws_lambda.yml | 10 +++++----- .github/workflows/test-integration-beam.yml | 10 +++++----- .github/workflows/test-integration-boto3.yml | 10 +++++----- .github/workflows/test-integration-bottle.yml | 10 +++++----- .github/workflows/test-integration-celery.yml | 10 +++++----- .github/workflows/test-integration-chalice.yml | 10 +++++----- .../test-integration-cloud_resource_context.yml | 10 +++++----- .github/workflows/test-integration-django.yml | 10 +++++----- .github/workflows/test-integration-falcon.yml | 10 +++++----- .github/workflows/test-integration-fastapi.yml | 10 +++++----- .github/workflows/test-integration-flask.yml | 10 +++++----- .github/workflows/test-integration-gcp.yml | 10 +++++----- .github/workflows/test-integration-gevent.yml | 10 +++++----- .github/workflows/test-integration-grpc.yml | 10 +++++----- .github/workflows/test-integration-httpx.yml | 10 +++++----- .github/workflows/test-integration-huey.yml | 10 +++++----- .github/workflows/test-integration-opentelemetry.yml | 10 +++++----- .github/workflows/test-integration-pure_eval.yml | 10 +++++----- .github/workflows/test-integration-pymongo.yml | 10 +++++----- .github/workflows/test-integration-pyramid.yml | 10 +++++----- .github/workflows/test-integration-quart.yml | 10 +++++----- .github/workflows/test-integration-redis.yml | 10 +++++----- .github/workflows/test-integration-rediscluster.yml | 10 +++++----- .github/workflows/test-integration-requests.yml | 10 +++++----- .github/workflows/test-integration-rq.yml | 10 +++++----- .github/workflows/test-integration-sanic.yml | 10 +++++----- .github/workflows/test-integration-sqlalchemy.yml | 10 +++++----- .github/workflows/test-integration-starlette.yml | 10 +++++----- .github/workflows/test-integration-starlite.yml | 10 +++++----- .github/workflows/test-integration-tornado.yml | 10 +++++----- .github/workflows/test-integration-trytond.yml | 10 +++++----- scripts/split-tox-gh-actions/ci-yaml.txt | 10 +++++----- 36 files changed, 180 insertions(+), 180 deletions(-) diff --git a/.github/workflows/test-common.yml b/.github/workflows/test-common.yml index ac2a12ad19..6bce201fdc 100644 --- a/.github/workflows/test-common.yml +++ b/.github/workflows/test-common.yml @@ -60,11 +60,11 @@ jobs: coverage combine .coverage* coverage xml -i - # Upload coverage report to CodeCov - curl -Os https://uploader.codecov.io/latest/linux/codecov - chmod +x codecov - ./codecov --file coverage.xml - + - uses: codecov/codecov-action@v3 + with: + token: ${{ secrets.CODECOV_TOKEN }} + files: coverage.xml + verbose: true # optional (default = false) check_required_tests: name: All common tests passed or skipped diff --git a/.github/workflows/test-integration-aiohttp.yml b/.github/workflows/test-integration-aiohttp.yml index cb7dfb8183..a5a476d6d2 100644 --- a/.github/workflows/test-integration-aiohttp.yml +++ b/.github/workflows/test-integration-aiohttp.yml @@ -60,11 +60,11 @@ jobs: coverage combine .coverage* coverage xml -i - # Upload coverage report to CodeCov - curl -Os https://uploader.codecov.io/latest/linux/codecov - chmod +x codecov - ./codecov --file coverage.xml - + - uses: codecov/codecov-action@v3 + with: + token: ${{ secrets.CODECOV_TOKEN }} + files: coverage.xml + verbose: true # optional (default = false) check_required_tests: name: All aiohttp tests passed or skipped diff --git a/.github/workflows/test-integration-arq.yml b/.github/workflows/test-integration-arq.yml index 106590ed9e..d7fbe1a764 100644 --- a/.github/workflows/test-integration-arq.yml +++ b/.github/workflows/test-integration-arq.yml @@ -60,11 +60,11 @@ jobs: coverage combine .coverage* coverage xml -i - # Upload coverage report to CodeCov - curl -Os https://uploader.codecov.io/latest/linux/codecov - chmod +x codecov - ./codecov --file coverage.xml - + - uses: codecov/codecov-action@v3 + with: + token: ${{ secrets.CODECOV_TOKEN }} + files: coverage.xml + verbose: true # optional (default = false) check_required_tests: name: All arq tests passed or skipped diff --git a/.github/workflows/test-integration-asgi.yml b/.github/workflows/test-integration-asgi.yml index c0628bcede..33c5a91f95 100644 --- a/.github/workflows/test-integration-asgi.yml +++ b/.github/workflows/test-integration-asgi.yml @@ -60,11 +60,11 @@ jobs: coverage combine .coverage* coverage xml -i - # Upload coverage report to CodeCov - curl -Os https://uploader.codecov.io/latest/linux/codecov - chmod +x codecov - ./codecov --file coverage.xml - + - uses: codecov/codecov-action@v3 + with: + token: ${{ secrets.CODECOV_TOKEN }} + files: coverage.xml + verbose: true # optional (default = false) check_required_tests: name: All asgi tests passed or skipped diff --git a/.github/workflows/test-integration-aws_lambda.yml b/.github/workflows/test-integration-aws_lambda.yml index 777181dd23..c98457f68f 100644 --- a/.github/workflows/test-integration-aws_lambda.yml +++ b/.github/workflows/test-integration-aws_lambda.yml @@ -60,11 +60,11 @@ jobs: coverage combine .coverage* coverage xml -i - # Upload coverage report to CodeCov - curl -Os https://uploader.codecov.io/latest/linux/codecov - chmod +x codecov - ./codecov --file coverage.xml - + - uses: codecov/codecov-action@v3 + with: + token: ${{ secrets.CODECOV_TOKEN }} + files: coverage.xml + verbose: true # optional (default = false) check_required_tests: name: All aws_lambda tests passed or skipped diff --git a/.github/workflows/test-integration-beam.yml b/.github/workflows/test-integration-beam.yml index 3d12663e03..9fe68f1ede 100644 --- a/.github/workflows/test-integration-beam.yml +++ b/.github/workflows/test-integration-beam.yml @@ -60,11 +60,11 @@ jobs: coverage combine .coverage* coverage xml -i - # Upload coverage report to CodeCov - curl -Os https://uploader.codecov.io/latest/linux/codecov - chmod +x codecov - ./codecov --file coverage.xml - + - uses: codecov/codecov-action@v3 + with: + token: ${{ secrets.CODECOV_TOKEN }} + files: coverage.xml + verbose: true # optional (default = false) check_required_tests: name: All beam tests passed or skipped diff --git a/.github/workflows/test-integration-boto3.yml b/.github/workflows/test-integration-boto3.yml index 77f62cf437..35b9b8818e 100644 --- a/.github/workflows/test-integration-boto3.yml +++ b/.github/workflows/test-integration-boto3.yml @@ -60,11 +60,11 @@ jobs: coverage combine .coverage* coverage xml -i - # Upload coverage report to CodeCov - curl -Os https://uploader.codecov.io/latest/linux/codecov - chmod +x codecov - ./codecov --file coverage.xml - + - uses: codecov/codecov-action@v3 + with: + token: ${{ secrets.CODECOV_TOKEN }} + files: coverage.xml + verbose: true # optional (default = false) check_required_tests: name: All boto3 tests passed or skipped diff --git a/.github/workflows/test-integration-bottle.yml b/.github/workflows/test-integration-bottle.yml index c55a74f5c3..bae1b67eb1 100644 --- a/.github/workflows/test-integration-bottle.yml +++ b/.github/workflows/test-integration-bottle.yml @@ -60,11 +60,11 @@ jobs: coverage combine .coverage* coverage xml -i - # Upload coverage report to CodeCov - curl -Os https://uploader.codecov.io/latest/linux/codecov - chmod +x codecov - ./codecov --file coverage.xml - + - uses: codecov/codecov-action@v3 + with: + token: ${{ secrets.CODECOV_TOKEN }} + files: coverage.xml + verbose: true # optional (default = false) check_required_tests: name: All bottle tests passed or skipped diff --git a/.github/workflows/test-integration-celery.yml b/.github/workflows/test-integration-celery.yml index 484636485d..cdd205676c 100644 --- a/.github/workflows/test-integration-celery.yml +++ b/.github/workflows/test-integration-celery.yml @@ -60,11 +60,11 @@ jobs: coverage combine .coverage* coverage xml -i - # Upload coverage report to CodeCov - curl -Os https://uploader.codecov.io/latest/linux/codecov - chmod +x codecov - ./codecov --file coverage.xml - + - uses: codecov/codecov-action@v3 + with: + token: ${{ secrets.CODECOV_TOKEN }} + files: coverage.xml + verbose: true # optional (default = false) check_required_tests: name: All celery tests passed or skipped diff --git a/.github/workflows/test-integration-chalice.yml b/.github/workflows/test-integration-chalice.yml index 678394b6fc..c55ba66f6d 100644 --- a/.github/workflows/test-integration-chalice.yml +++ b/.github/workflows/test-integration-chalice.yml @@ -60,11 +60,11 @@ jobs: coverage combine .coverage* coverage xml -i - # Upload coverage report to CodeCov - curl -Os https://uploader.codecov.io/latest/linux/codecov - chmod +x codecov - ./codecov --file coverage.xml - + - uses: codecov/codecov-action@v3 + with: + token: ${{ secrets.CODECOV_TOKEN }} + files: coverage.xml + verbose: true # optional (default = false) check_required_tests: name: All chalice tests passed or skipped diff --git a/.github/workflows/test-integration-cloud_resource_context.yml b/.github/workflows/test-integration-cloud_resource_context.yml index 20ef9ca5d5..d8d00dcd92 100644 --- a/.github/workflows/test-integration-cloud_resource_context.yml +++ b/.github/workflows/test-integration-cloud_resource_context.yml @@ -60,11 +60,11 @@ jobs: coverage combine .coverage* coverage xml -i - # Upload coverage report to CodeCov - curl -Os https://uploader.codecov.io/latest/linux/codecov - chmod +x codecov - ./codecov --file coverage.xml - + - uses: codecov/codecov-action@v3 + with: + token: ${{ secrets.CODECOV_TOKEN }} + files: coverage.xml + verbose: true # optional (default = false) check_required_tests: name: All cloud_resource_context tests passed or skipped diff --git a/.github/workflows/test-integration-django.yml b/.github/workflows/test-integration-django.yml index 5bda32f8f6..d4c464c751 100644 --- a/.github/workflows/test-integration-django.yml +++ b/.github/workflows/test-integration-django.yml @@ -78,11 +78,11 @@ jobs: coverage combine .coverage* coverage xml -i - # Upload coverage report to CodeCov - curl -Os https://uploader.codecov.io/latest/linux/codecov - chmod +x codecov - ./codecov --file coverage.xml - + - uses: codecov/codecov-action@v3 + with: + token: ${{ secrets.CODECOV_TOKEN }} + files: coverage.xml + verbose: true # optional (default = false) check_required_tests: name: All django tests passed or skipped diff --git a/.github/workflows/test-integration-falcon.yml b/.github/workflows/test-integration-falcon.yml index 015c9a8daf..1212ee3d11 100644 --- a/.github/workflows/test-integration-falcon.yml +++ b/.github/workflows/test-integration-falcon.yml @@ -60,11 +60,11 @@ jobs: coverage combine .coverage* coverage xml -i - # Upload coverage report to CodeCov - curl -Os https://uploader.codecov.io/latest/linux/codecov - chmod +x codecov - ./codecov --file coverage.xml - + - uses: codecov/codecov-action@v3 + with: + token: ${{ secrets.CODECOV_TOKEN }} + files: coverage.xml + verbose: true # optional (default = false) check_required_tests: name: All falcon tests passed or skipped diff --git a/.github/workflows/test-integration-fastapi.yml b/.github/workflows/test-integration-fastapi.yml index e6cd489180..6d9b4ce1a4 100644 --- a/.github/workflows/test-integration-fastapi.yml +++ b/.github/workflows/test-integration-fastapi.yml @@ -60,11 +60,11 @@ jobs: coverage combine .coverage* coverage xml -i - # Upload coverage report to CodeCov - curl -Os https://uploader.codecov.io/latest/linux/codecov - chmod +x codecov - ./codecov --file coverage.xml - + - uses: codecov/codecov-action@v3 + with: + token: ${{ secrets.CODECOV_TOKEN }} + files: coverage.xml + verbose: true # optional (default = false) check_required_tests: name: All fastapi tests passed or skipped diff --git a/.github/workflows/test-integration-flask.yml b/.github/workflows/test-integration-flask.yml index 1173a1dd7a..ed78a55368 100644 --- a/.github/workflows/test-integration-flask.yml +++ b/.github/workflows/test-integration-flask.yml @@ -60,11 +60,11 @@ jobs: coverage combine .coverage* coverage xml -i - # Upload coverage report to CodeCov - curl -Os https://uploader.codecov.io/latest/linux/codecov - chmod +x codecov - ./codecov --file coverage.xml - + - uses: codecov/codecov-action@v3 + with: + token: ${{ secrets.CODECOV_TOKEN }} + files: coverage.xml + verbose: true # optional (default = false) check_required_tests: name: All flask tests passed or skipped diff --git a/.github/workflows/test-integration-gcp.yml b/.github/workflows/test-integration-gcp.yml index 93c4e94be8..296099d3cc 100644 --- a/.github/workflows/test-integration-gcp.yml +++ b/.github/workflows/test-integration-gcp.yml @@ -60,11 +60,11 @@ jobs: coverage combine .coverage* coverage xml -i - # Upload coverage report to CodeCov - curl -Os https://uploader.codecov.io/latest/linux/codecov - chmod +x codecov - ./codecov --file coverage.xml - + - uses: codecov/codecov-action@v3 + with: + token: ${{ secrets.CODECOV_TOKEN }} + files: coverage.xml + verbose: true # optional (default = false) check_required_tests: name: All gcp tests passed or skipped diff --git a/.github/workflows/test-integration-gevent.yml b/.github/workflows/test-integration-gevent.yml index c047fffb03..e141a84521 100644 --- a/.github/workflows/test-integration-gevent.yml +++ b/.github/workflows/test-integration-gevent.yml @@ -60,11 +60,11 @@ jobs: coverage combine .coverage* coverage xml -i - # Upload coverage report to CodeCov - curl -Os https://uploader.codecov.io/latest/linux/codecov - chmod +x codecov - ./codecov --file coverage.xml - + - uses: codecov/codecov-action@v3 + with: + token: ${{ secrets.CODECOV_TOKEN }} + files: coverage.xml + verbose: true # optional (default = false) check_required_tests: name: All gevent tests passed or skipped diff --git a/.github/workflows/test-integration-grpc.yml b/.github/workflows/test-integration-grpc.yml index 974f034f60..53a53830bd 100644 --- a/.github/workflows/test-integration-grpc.yml +++ b/.github/workflows/test-integration-grpc.yml @@ -60,11 +60,11 @@ jobs: coverage combine .coverage* coverage xml -i - # Upload coverage report to CodeCov - curl -Os https://uploader.codecov.io/latest/linux/codecov - chmod +x codecov - ./codecov --file coverage.xml - + - uses: codecov/codecov-action@v3 + with: + token: ${{ secrets.CODECOV_TOKEN }} + files: coverage.xml + verbose: true # optional (default = false) check_required_tests: name: All grpc tests passed or skipped diff --git a/.github/workflows/test-integration-httpx.yml b/.github/workflows/test-integration-httpx.yml index f62563f4a1..e55f7ef398 100644 --- a/.github/workflows/test-integration-httpx.yml +++ b/.github/workflows/test-integration-httpx.yml @@ -60,11 +60,11 @@ jobs: coverage combine .coverage* coverage xml -i - # Upload coverage report to CodeCov - curl -Os https://uploader.codecov.io/latest/linux/codecov - chmod +x codecov - ./codecov --file coverage.xml - + - uses: codecov/codecov-action@v3 + with: + token: ${{ secrets.CODECOV_TOKEN }} + files: coverage.xml + verbose: true # optional (default = false) check_required_tests: name: All httpx tests passed or skipped diff --git a/.github/workflows/test-integration-huey.yml b/.github/workflows/test-integration-huey.yml index 323a399eee..16170b28be 100644 --- a/.github/workflows/test-integration-huey.yml +++ b/.github/workflows/test-integration-huey.yml @@ -60,11 +60,11 @@ jobs: coverage combine .coverage* coverage xml -i - # Upload coverage report to CodeCov - curl -Os https://uploader.codecov.io/latest/linux/codecov - chmod +x codecov - ./codecov --file coverage.xml - + - uses: codecov/codecov-action@v3 + with: + token: ${{ secrets.CODECOV_TOKEN }} + files: coverage.xml + verbose: true # optional (default = false) check_required_tests: name: All huey tests passed or skipped diff --git a/.github/workflows/test-integration-opentelemetry.yml b/.github/workflows/test-integration-opentelemetry.yml index f1dce10d0c..2473b3a478 100644 --- a/.github/workflows/test-integration-opentelemetry.yml +++ b/.github/workflows/test-integration-opentelemetry.yml @@ -60,11 +60,11 @@ jobs: coverage combine .coverage* coverage xml -i - # Upload coverage report to CodeCov - curl -Os https://uploader.codecov.io/latest/linux/codecov - chmod +x codecov - ./codecov --file coverage.xml - + - uses: codecov/codecov-action@v3 + with: + token: ${{ secrets.CODECOV_TOKEN }} + files: coverage.xml + verbose: true # optional (default = false) check_required_tests: name: All opentelemetry tests passed or skipped diff --git a/.github/workflows/test-integration-pure_eval.yml b/.github/workflows/test-integration-pure_eval.yml index c9bb0360d1..33ca5fb931 100644 --- a/.github/workflows/test-integration-pure_eval.yml +++ b/.github/workflows/test-integration-pure_eval.yml @@ -60,11 +60,11 @@ jobs: coverage combine .coverage* coverage xml -i - # Upload coverage report to CodeCov - curl -Os https://uploader.codecov.io/latest/linux/codecov - chmod +x codecov - ./codecov --file coverage.xml - + - uses: codecov/codecov-action@v3 + with: + token: ${{ secrets.CODECOV_TOKEN }} + files: coverage.xml + verbose: true # optional (default = false) check_required_tests: name: All pure_eval tests passed or skipped diff --git a/.github/workflows/test-integration-pymongo.yml b/.github/workflows/test-integration-pymongo.yml index f7551875f4..8fea01f685 100644 --- a/.github/workflows/test-integration-pymongo.yml +++ b/.github/workflows/test-integration-pymongo.yml @@ -60,11 +60,11 @@ jobs: coverage combine .coverage* coverage xml -i - # Upload coverage report to CodeCov - curl -Os https://uploader.codecov.io/latest/linux/codecov - chmod +x codecov - ./codecov --file coverage.xml - + - uses: codecov/codecov-action@v3 + with: + token: ${{ secrets.CODECOV_TOKEN }} + files: coverage.xml + verbose: true # optional (default = false) check_required_tests: name: All pymongo tests passed or skipped diff --git a/.github/workflows/test-integration-pyramid.yml b/.github/workflows/test-integration-pyramid.yml index cb952899b8..62d49475d3 100644 --- a/.github/workflows/test-integration-pyramid.yml +++ b/.github/workflows/test-integration-pyramid.yml @@ -60,11 +60,11 @@ jobs: coverage combine .coverage* coverage xml -i - # Upload coverage report to CodeCov - curl -Os https://uploader.codecov.io/latest/linux/codecov - chmod +x codecov - ./codecov --file coverage.xml - + - uses: codecov/codecov-action@v3 + with: + token: ${{ secrets.CODECOV_TOKEN }} + files: coverage.xml + verbose: true # optional (default = false) check_required_tests: name: All pyramid tests passed or skipped diff --git a/.github/workflows/test-integration-quart.yml b/.github/workflows/test-integration-quart.yml index 871a9dc669..9cca9596bc 100644 --- a/.github/workflows/test-integration-quart.yml +++ b/.github/workflows/test-integration-quart.yml @@ -60,11 +60,11 @@ jobs: coverage combine .coverage* coverage xml -i - # Upload coverage report to CodeCov - curl -Os https://uploader.codecov.io/latest/linux/codecov - chmod +x codecov - ./codecov --file coverage.xml - + - uses: codecov/codecov-action@v3 + with: + token: ${{ secrets.CODECOV_TOKEN }} + files: coverage.xml + verbose: true # optional (default = false) check_required_tests: name: All quart tests passed or skipped diff --git a/.github/workflows/test-integration-redis.yml b/.github/workflows/test-integration-redis.yml index 10329faf75..84d547cd51 100644 --- a/.github/workflows/test-integration-redis.yml +++ b/.github/workflows/test-integration-redis.yml @@ -60,11 +60,11 @@ jobs: coverage combine .coverage* coverage xml -i - # Upload coverage report to CodeCov - curl -Os https://uploader.codecov.io/latest/linux/codecov - chmod +x codecov - ./codecov --file coverage.xml - + - uses: codecov/codecov-action@v3 + with: + token: ${{ secrets.CODECOV_TOKEN }} + files: coverage.xml + verbose: true # optional (default = false) check_required_tests: name: All redis tests passed or skipped diff --git a/.github/workflows/test-integration-rediscluster.yml b/.github/workflows/test-integration-rediscluster.yml index ecbcf42567..915f779af7 100644 --- a/.github/workflows/test-integration-rediscluster.yml +++ b/.github/workflows/test-integration-rediscluster.yml @@ -60,11 +60,11 @@ jobs: coverage combine .coverage* coverage xml -i - # Upload coverage report to CodeCov - curl -Os https://uploader.codecov.io/latest/linux/codecov - chmod +x codecov - ./codecov --file coverage.xml - + - uses: codecov/codecov-action@v3 + with: + token: ${{ secrets.CODECOV_TOKEN }} + files: coverage.xml + verbose: true # optional (default = false) check_required_tests: name: All rediscluster tests passed or skipped diff --git a/.github/workflows/test-integration-requests.yml b/.github/workflows/test-integration-requests.yml index 2218572cbd..dccf3e2bde 100644 --- a/.github/workflows/test-integration-requests.yml +++ b/.github/workflows/test-integration-requests.yml @@ -60,11 +60,11 @@ jobs: coverage combine .coverage* coverage xml -i - # Upload coverage report to CodeCov - curl -Os https://uploader.codecov.io/latest/linux/codecov - chmod +x codecov - ./codecov --file coverage.xml - + - uses: codecov/codecov-action@v3 + with: + token: ${{ secrets.CODECOV_TOKEN }} + files: coverage.xml + verbose: true # optional (default = false) check_required_tests: name: All requests tests passed or skipped diff --git a/.github/workflows/test-integration-rq.yml b/.github/workflows/test-integration-rq.yml index 2ea4ae7658..124d22b5ff 100644 --- a/.github/workflows/test-integration-rq.yml +++ b/.github/workflows/test-integration-rq.yml @@ -60,11 +60,11 @@ jobs: coverage combine .coverage* coverage xml -i - # Upload coverage report to CodeCov - curl -Os https://uploader.codecov.io/latest/linux/codecov - chmod +x codecov - ./codecov --file coverage.xml - + - uses: codecov/codecov-action@v3 + with: + token: ${{ secrets.CODECOV_TOKEN }} + files: coverage.xml + verbose: true # optional (default = false) check_required_tests: name: All rq tests passed or skipped diff --git a/.github/workflows/test-integration-sanic.yml b/.github/workflows/test-integration-sanic.yml index f872fc5f99..e3941e066a 100644 --- a/.github/workflows/test-integration-sanic.yml +++ b/.github/workflows/test-integration-sanic.yml @@ -60,11 +60,11 @@ jobs: coverage combine .coverage* coverage xml -i - # Upload coverage report to CodeCov - curl -Os https://uploader.codecov.io/latest/linux/codecov - chmod +x codecov - ./codecov --file coverage.xml - + - uses: codecov/codecov-action@v3 + with: + token: ${{ secrets.CODECOV_TOKEN }} + files: coverage.xml + verbose: true # optional (default = false) check_required_tests: name: All sanic tests passed or skipped diff --git a/.github/workflows/test-integration-sqlalchemy.yml b/.github/workflows/test-integration-sqlalchemy.yml index 0145ceea34..015d23a666 100644 --- a/.github/workflows/test-integration-sqlalchemy.yml +++ b/.github/workflows/test-integration-sqlalchemy.yml @@ -60,11 +60,11 @@ jobs: coverage combine .coverage* coverage xml -i - # Upload coverage report to CodeCov - curl -Os https://uploader.codecov.io/latest/linux/codecov - chmod +x codecov - ./codecov --file coverage.xml - + - uses: codecov/codecov-action@v3 + with: + token: ${{ secrets.CODECOV_TOKEN }} + files: coverage.xml + verbose: true # optional (default = false) check_required_tests: name: All sqlalchemy tests passed or skipped diff --git a/.github/workflows/test-integration-starlette.yml b/.github/workflows/test-integration-starlette.yml index 195e258f65..4dcff7da44 100644 --- a/.github/workflows/test-integration-starlette.yml +++ b/.github/workflows/test-integration-starlette.yml @@ -60,11 +60,11 @@ jobs: coverage combine .coverage* coverage xml -i - # Upload coverage report to CodeCov - curl -Os https://uploader.codecov.io/latest/linux/codecov - chmod +x codecov - ./codecov --file coverage.xml - + - uses: codecov/codecov-action@v3 + with: + token: ${{ secrets.CODECOV_TOKEN }} + files: coverage.xml + verbose: true # optional (default = false) check_required_tests: name: All starlette tests passed or skipped diff --git a/.github/workflows/test-integration-starlite.yml b/.github/workflows/test-integration-starlite.yml index f1e8a1be9c..646c0c07fd 100644 --- a/.github/workflows/test-integration-starlite.yml +++ b/.github/workflows/test-integration-starlite.yml @@ -60,11 +60,11 @@ jobs: coverage combine .coverage* coverage xml -i - # Upload coverage report to CodeCov - curl -Os https://uploader.codecov.io/latest/linux/codecov - chmod +x codecov - ./codecov --file coverage.xml - + - uses: codecov/codecov-action@v3 + with: + token: ${{ secrets.CODECOV_TOKEN }} + files: coverage.xml + verbose: true # optional (default = false) check_required_tests: name: All starlite tests passed or skipped diff --git a/.github/workflows/test-integration-tornado.yml b/.github/workflows/test-integration-tornado.yml index 128fe82817..cccbd2b8f4 100644 --- a/.github/workflows/test-integration-tornado.yml +++ b/.github/workflows/test-integration-tornado.yml @@ -60,11 +60,11 @@ jobs: coverage combine .coverage* coverage xml -i - # Upload coverage report to CodeCov - curl -Os https://uploader.codecov.io/latest/linux/codecov - chmod +x codecov - ./codecov --file coverage.xml - + - uses: codecov/codecov-action@v3 + with: + token: ${{ secrets.CODECOV_TOKEN }} + files: coverage.xml + verbose: true # optional (default = false) check_required_tests: name: All tornado tests passed or skipped diff --git a/.github/workflows/test-integration-trytond.yml b/.github/workflows/test-integration-trytond.yml index f89ee5ca05..a2ea124245 100644 --- a/.github/workflows/test-integration-trytond.yml +++ b/.github/workflows/test-integration-trytond.yml @@ -60,11 +60,11 @@ jobs: coverage combine .coverage* coverage xml -i - # Upload coverage report to CodeCov - curl -Os https://uploader.codecov.io/latest/linux/codecov - chmod +x codecov - ./codecov --file coverage.xml - + - uses: codecov/codecov-action@v3 + with: + token: ${{ secrets.CODECOV_TOKEN }} + files: coverage.xml + verbose: true # optional (default = false) check_required_tests: name: All trytond tests passed or skipped diff --git a/scripts/split-tox-gh-actions/ci-yaml.txt b/scripts/split-tox-gh-actions/ci-yaml.txt index 9e928f82f2..99f6ffe1c2 100644 --- a/scripts/split-tox-gh-actions/ci-yaml.txt +++ b/scripts/split-tox-gh-actions/ci-yaml.txt @@ -52,11 +52,11 @@ jobs: coverage combine .coverage* coverage xml -i - # Upload coverage report to CodeCov - curl -Os https://uploader.codecov.io/latest/linux/codecov - chmod +x codecov - ./codecov --file coverage.xml - + - uses: codecov/codecov-action@v3 + with: + token: ${{ secrets.CODECOV_TOKEN }} + files: coverage.xml + verbose: true # optional (default = false) check_required_tests: name: All {{ framework }} tests passed or skipped From 0d5715e5065a0d26d1689cf47fb04675397556be Mon Sep 17 00:00:00 2001 From: Anton Pirker Date: Thu, 13 Apr 2023 16:04:07 +0200 Subject: [PATCH 4/5] Make it none verbose --- .github/workflows/test-common.yml | 1 - .github/workflows/test-integration-aiohttp.yml | 1 - .github/workflows/test-integration-arq.yml | 1 - .github/workflows/test-integration-asgi.yml | 1 - .github/workflows/test-integration-aws_lambda.yml | 1 - .github/workflows/test-integration-beam.yml | 1 - .github/workflows/test-integration-boto3.yml | 1 - .github/workflows/test-integration-bottle.yml | 1 - .github/workflows/test-integration-celery.yml | 1 - .github/workflows/test-integration-chalice.yml | 1 - .github/workflows/test-integration-cloud_resource_context.yml | 1 - .github/workflows/test-integration-django.yml | 1 - .github/workflows/test-integration-falcon.yml | 1 - .github/workflows/test-integration-fastapi.yml | 1 - .github/workflows/test-integration-flask.yml | 1 - .github/workflows/test-integration-gcp.yml | 1 - .github/workflows/test-integration-gevent.yml | 1 - .github/workflows/test-integration-grpc.yml | 1 - .github/workflows/test-integration-httpx.yml | 1 - .github/workflows/test-integration-huey.yml | 1 - .github/workflows/test-integration-opentelemetry.yml | 1 - .github/workflows/test-integration-pure_eval.yml | 1 - .github/workflows/test-integration-pymongo.yml | 1 - .github/workflows/test-integration-pyramid.yml | 1 - .github/workflows/test-integration-quart.yml | 1 - .github/workflows/test-integration-redis.yml | 1 - .github/workflows/test-integration-rediscluster.yml | 1 - .github/workflows/test-integration-requests.yml | 1 - .github/workflows/test-integration-rq.yml | 1 - .github/workflows/test-integration-sanic.yml | 1 - .github/workflows/test-integration-sqlalchemy.yml | 1 - .github/workflows/test-integration-starlette.yml | 1 - .github/workflows/test-integration-starlite.yml | 1 - .github/workflows/test-integration-tornado.yml | 1 - .github/workflows/test-integration-trytond.yml | 1 - scripts/split-tox-gh-actions/ci-yaml.txt | 1 - 36 files changed, 36 deletions(-) diff --git a/.github/workflows/test-common.yml b/.github/workflows/test-common.yml index 6bce201fdc..539a2d6931 100644 --- a/.github/workflows/test-common.yml +++ b/.github/workflows/test-common.yml @@ -64,7 +64,6 @@ jobs: with: token: ${{ secrets.CODECOV_TOKEN }} files: coverage.xml - verbose: true # optional (default = false) check_required_tests: name: All common tests passed or skipped diff --git a/.github/workflows/test-integration-aiohttp.yml b/.github/workflows/test-integration-aiohttp.yml index a5a476d6d2..54df6e7b20 100644 --- a/.github/workflows/test-integration-aiohttp.yml +++ b/.github/workflows/test-integration-aiohttp.yml @@ -64,7 +64,6 @@ jobs: with: token: ${{ secrets.CODECOV_TOKEN }} files: coverage.xml - verbose: true # optional (default = false) check_required_tests: name: All aiohttp tests passed or skipped diff --git a/.github/workflows/test-integration-arq.yml b/.github/workflows/test-integration-arq.yml index d7fbe1a764..e3d1fc36da 100644 --- a/.github/workflows/test-integration-arq.yml +++ b/.github/workflows/test-integration-arq.yml @@ -64,7 +64,6 @@ jobs: with: token: ${{ secrets.CODECOV_TOKEN }} files: coverage.xml - verbose: true # optional (default = false) check_required_tests: name: All arq tests passed or skipped diff --git a/.github/workflows/test-integration-asgi.yml b/.github/workflows/test-integration-asgi.yml index 33c5a91f95..08927f015a 100644 --- a/.github/workflows/test-integration-asgi.yml +++ b/.github/workflows/test-integration-asgi.yml @@ -64,7 +64,6 @@ jobs: with: token: ${{ secrets.CODECOV_TOKEN }} files: coverage.xml - verbose: true # optional (default = false) check_required_tests: name: All asgi tests passed or skipped diff --git a/.github/workflows/test-integration-aws_lambda.yml b/.github/workflows/test-integration-aws_lambda.yml index c98457f68f..f25f263f46 100644 --- a/.github/workflows/test-integration-aws_lambda.yml +++ b/.github/workflows/test-integration-aws_lambda.yml @@ -64,7 +64,6 @@ jobs: with: token: ${{ secrets.CODECOV_TOKEN }} files: coverage.xml - verbose: true # optional (default = false) check_required_tests: name: All aws_lambda tests passed or skipped diff --git a/.github/workflows/test-integration-beam.yml b/.github/workflows/test-integration-beam.yml index 9fe68f1ede..815967c78c 100644 --- a/.github/workflows/test-integration-beam.yml +++ b/.github/workflows/test-integration-beam.yml @@ -64,7 +64,6 @@ jobs: with: token: ${{ secrets.CODECOV_TOKEN }} files: coverage.xml - verbose: true # optional (default = false) check_required_tests: name: All beam tests passed or skipped diff --git a/.github/workflows/test-integration-boto3.yml b/.github/workflows/test-integration-boto3.yml index 35b9b8818e..2514f427c2 100644 --- a/.github/workflows/test-integration-boto3.yml +++ b/.github/workflows/test-integration-boto3.yml @@ -64,7 +64,6 @@ jobs: with: token: ${{ secrets.CODECOV_TOKEN }} files: coverage.xml - verbose: true # optional (default = false) check_required_tests: name: All boto3 tests passed or skipped diff --git a/.github/workflows/test-integration-bottle.yml b/.github/workflows/test-integration-bottle.yml index bae1b67eb1..bdd3c05f64 100644 --- a/.github/workflows/test-integration-bottle.yml +++ b/.github/workflows/test-integration-bottle.yml @@ -64,7 +64,6 @@ jobs: with: token: ${{ secrets.CODECOV_TOKEN }} files: coverage.xml - verbose: true # optional (default = false) check_required_tests: name: All bottle tests passed or skipped diff --git a/.github/workflows/test-integration-celery.yml b/.github/workflows/test-integration-celery.yml index cdd205676c..d7be8208ac 100644 --- a/.github/workflows/test-integration-celery.yml +++ b/.github/workflows/test-integration-celery.yml @@ -64,7 +64,6 @@ jobs: with: token: ${{ secrets.CODECOV_TOKEN }} files: coverage.xml - verbose: true # optional (default = false) check_required_tests: name: All celery tests passed or skipped diff --git a/.github/workflows/test-integration-chalice.yml b/.github/workflows/test-integration-chalice.yml index c55ba66f6d..57a33160df 100644 --- a/.github/workflows/test-integration-chalice.yml +++ b/.github/workflows/test-integration-chalice.yml @@ -64,7 +64,6 @@ jobs: with: token: ${{ secrets.CODECOV_TOKEN }} files: coverage.xml - verbose: true # optional (default = false) check_required_tests: name: All chalice tests passed or skipped diff --git a/.github/workflows/test-integration-cloud_resource_context.yml b/.github/workflows/test-integration-cloud_resource_context.yml index d8d00dcd92..afd7c8b5c9 100644 --- a/.github/workflows/test-integration-cloud_resource_context.yml +++ b/.github/workflows/test-integration-cloud_resource_context.yml @@ -64,7 +64,6 @@ jobs: with: token: ${{ secrets.CODECOV_TOKEN }} files: coverage.xml - verbose: true # optional (default = false) check_required_tests: name: All cloud_resource_context tests passed or skipped diff --git a/.github/workflows/test-integration-django.yml b/.github/workflows/test-integration-django.yml index d4c464c751..4e90a5725e 100644 --- a/.github/workflows/test-integration-django.yml +++ b/.github/workflows/test-integration-django.yml @@ -82,7 +82,6 @@ jobs: with: token: ${{ secrets.CODECOV_TOKEN }} files: coverage.xml - verbose: true # optional (default = false) check_required_tests: name: All django tests passed or skipped diff --git a/.github/workflows/test-integration-falcon.yml b/.github/workflows/test-integration-falcon.yml index 1212ee3d11..611db99fda 100644 --- a/.github/workflows/test-integration-falcon.yml +++ b/.github/workflows/test-integration-falcon.yml @@ -64,7 +64,6 @@ jobs: with: token: ${{ secrets.CODECOV_TOKEN }} files: coverage.xml - verbose: true # optional (default = false) check_required_tests: name: All falcon tests passed or skipped diff --git a/.github/workflows/test-integration-fastapi.yml b/.github/workflows/test-integration-fastapi.yml index 6d9b4ce1a4..93405edf6a 100644 --- a/.github/workflows/test-integration-fastapi.yml +++ b/.github/workflows/test-integration-fastapi.yml @@ -64,7 +64,6 @@ jobs: with: token: ${{ secrets.CODECOV_TOKEN }} files: coverage.xml - verbose: true # optional (default = false) check_required_tests: name: All fastapi tests passed or skipped diff --git a/.github/workflows/test-integration-flask.yml b/.github/workflows/test-integration-flask.yml index ed78a55368..9373179ae5 100644 --- a/.github/workflows/test-integration-flask.yml +++ b/.github/workflows/test-integration-flask.yml @@ -64,7 +64,6 @@ jobs: with: token: ${{ secrets.CODECOV_TOKEN }} files: coverage.xml - verbose: true # optional (default = false) check_required_tests: name: All flask tests passed or skipped diff --git a/.github/workflows/test-integration-gcp.yml b/.github/workflows/test-integration-gcp.yml index 296099d3cc..5db0a6905b 100644 --- a/.github/workflows/test-integration-gcp.yml +++ b/.github/workflows/test-integration-gcp.yml @@ -64,7 +64,6 @@ jobs: with: token: ${{ secrets.CODECOV_TOKEN }} files: coverage.xml - verbose: true # optional (default = false) check_required_tests: name: All gcp tests passed or skipped diff --git a/.github/workflows/test-integration-gevent.yml b/.github/workflows/test-integration-gevent.yml index e141a84521..20593d88ff 100644 --- a/.github/workflows/test-integration-gevent.yml +++ b/.github/workflows/test-integration-gevent.yml @@ -64,7 +64,6 @@ jobs: with: token: ${{ secrets.CODECOV_TOKEN }} files: coverage.xml - verbose: true # optional (default = false) check_required_tests: name: All gevent tests passed or skipped diff --git a/.github/workflows/test-integration-grpc.yml b/.github/workflows/test-integration-grpc.yml index 53a53830bd..0122124a79 100644 --- a/.github/workflows/test-integration-grpc.yml +++ b/.github/workflows/test-integration-grpc.yml @@ -64,7 +64,6 @@ jobs: with: token: ${{ secrets.CODECOV_TOKEN }} files: coverage.xml - verbose: true # optional (default = false) check_required_tests: name: All grpc tests passed or skipped diff --git a/.github/workflows/test-integration-httpx.yml b/.github/workflows/test-integration-httpx.yml index e55f7ef398..aac81aa3e5 100644 --- a/.github/workflows/test-integration-httpx.yml +++ b/.github/workflows/test-integration-httpx.yml @@ -64,7 +64,6 @@ jobs: with: token: ${{ secrets.CODECOV_TOKEN }} files: coverage.xml - verbose: true # optional (default = false) check_required_tests: name: All httpx tests passed or skipped diff --git a/.github/workflows/test-integration-huey.yml b/.github/workflows/test-integration-huey.yml index 16170b28be..59dc3e3edb 100644 --- a/.github/workflows/test-integration-huey.yml +++ b/.github/workflows/test-integration-huey.yml @@ -64,7 +64,6 @@ jobs: with: token: ${{ secrets.CODECOV_TOKEN }} files: coverage.xml - verbose: true # optional (default = false) check_required_tests: name: All huey tests passed or skipped diff --git a/.github/workflows/test-integration-opentelemetry.yml b/.github/workflows/test-integration-opentelemetry.yml index 2473b3a478..f493c42ebe 100644 --- a/.github/workflows/test-integration-opentelemetry.yml +++ b/.github/workflows/test-integration-opentelemetry.yml @@ -64,7 +64,6 @@ jobs: with: token: ${{ secrets.CODECOV_TOKEN }} files: coverage.xml - verbose: true # optional (default = false) check_required_tests: name: All opentelemetry tests passed or skipped diff --git a/.github/workflows/test-integration-pure_eval.yml b/.github/workflows/test-integration-pure_eval.yml index 33ca5fb931..d6a014b1f1 100644 --- a/.github/workflows/test-integration-pure_eval.yml +++ b/.github/workflows/test-integration-pure_eval.yml @@ -64,7 +64,6 @@ jobs: with: token: ${{ secrets.CODECOV_TOKEN }} files: coverage.xml - verbose: true # optional (default = false) check_required_tests: name: All pure_eval tests passed or skipped diff --git a/.github/workflows/test-integration-pymongo.yml b/.github/workflows/test-integration-pymongo.yml index 8fea01f685..2822443423 100644 --- a/.github/workflows/test-integration-pymongo.yml +++ b/.github/workflows/test-integration-pymongo.yml @@ -64,7 +64,6 @@ jobs: with: token: ${{ secrets.CODECOV_TOKEN }} files: coverage.xml - verbose: true # optional (default = false) check_required_tests: name: All pymongo tests passed or skipped diff --git a/.github/workflows/test-integration-pyramid.yml b/.github/workflows/test-integration-pyramid.yml index 62d49475d3..626bf920a9 100644 --- a/.github/workflows/test-integration-pyramid.yml +++ b/.github/workflows/test-integration-pyramid.yml @@ -64,7 +64,6 @@ jobs: with: token: ${{ secrets.CODECOV_TOKEN }} files: coverage.xml - verbose: true # optional (default = false) check_required_tests: name: All pyramid tests passed or skipped diff --git a/.github/workflows/test-integration-quart.yml b/.github/workflows/test-integration-quart.yml index 9cca9596bc..08efc8cdc2 100644 --- a/.github/workflows/test-integration-quart.yml +++ b/.github/workflows/test-integration-quart.yml @@ -64,7 +64,6 @@ jobs: with: token: ${{ secrets.CODECOV_TOKEN }} files: coverage.xml - verbose: true # optional (default = false) check_required_tests: name: All quart tests passed or skipped diff --git a/.github/workflows/test-integration-redis.yml b/.github/workflows/test-integration-redis.yml index 84d547cd51..0e3f49f360 100644 --- a/.github/workflows/test-integration-redis.yml +++ b/.github/workflows/test-integration-redis.yml @@ -64,7 +64,6 @@ jobs: with: token: ${{ secrets.CODECOV_TOKEN }} files: coverage.xml - verbose: true # optional (default = false) check_required_tests: name: All redis tests passed or skipped diff --git a/.github/workflows/test-integration-rediscluster.yml b/.github/workflows/test-integration-rediscluster.yml index 915f779af7..9b6ba22874 100644 --- a/.github/workflows/test-integration-rediscluster.yml +++ b/.github/workflows/test-integration-rediscluster.yml @@ -64,7 +64,6 @@ jobs: with: token: ${{ secrets.CODECOV_TOKEN }} files: coverage.xml - verbose: true # optional (default = false) check_required_tests: name: All rediscluster tests passed or skipped diff --git a/.github/workflows/test-integration-requests.yml b/.github/workflows/test-integration-requests.yml index dccf3e2bde..fe50c033a4 100644 --- a/.github/workflows/test-integration-requests.yml +++ b/.github/workflows/test-integration-requests.yml @@ -64,7 +64,6 @@ jobs: with: token: ${{ secrets.CODECOV_TOKEN }} files: coverage.xml - verbose: true # optional (default = false) check_required_tests: name: All requests tests passed or skipped diff --git a/.github/workflows/test-integration-rq.yml b/.github/workflows/test-integration-rq.yml index 124d22b5ff..8b86f5849b 100644 --- a/.github/workflows/test-integration-rq.yml +++ b/.github/workflows/test-integration-rq.yml @@ -64,7 +64,6 @@ jobs: with: token: ${{ secrets.CODECOV_TOKEN }} files: coverage.xml - verbose: true # optional (default = false) check_required_tests: name: All rq tests passed or skipped diff --git a/.github/workflows/test-integration-sanic.yml b/.github/workflows/test-integration-sanic.yml index e3941e066a..906f10b0ec 100644 --- a/.github/workflows/test-integration-sanic.yml +++ b/.github/workflows/test-integration-sanic.yml @@ -64,7 +64,6 @@ jobs: with: token: ${{ secrets.CODECOV_TOKEN }} files: coverage.xml - verbose: true # optional (default = false) check_required_tests: name: All sanic tests passed or skipped diff --git a/.github/workflows/test-integration-sqlalchemy.yml b/.github/workflows/test-integration-sqlalchemy.yml index 015d23a666..fc844adf9c 100644 --- a/.github/workflows/test-integration-sqlalchemy.yml +++ b/.github/workflows/test-integration-sqlalchemy.yml @@ -64,7 +64,6 @@ jobs: with: token: ${{ secrets.CODECOV_TOKEN }} files: coverage.xml - verbose: true # optional (default = false) check_required_tests: name: All sqlalchemy tests passed or skipped diff --git a/.github/workflows/test-integration-starlette.yml b/.github/workflows/test-integration-starlette.yml index 4dcff7da44..d6bb94dcb9 100644 --- a/.github/workflows/test-integration-starlette.yml +++ b/.github/workflows/test-integration-starlette.yml @@ -64,7 +64,6 @@ jobs: with: token: ${{ secrets.CODECOV_TOKEN }} files: coverage.xml - verbose: true # optional (default = false) check_required_tests: name: All starlette tests passed or skipped diff --git a/.github/workflows/test-integration-starlite.yml b/.github/workflows/test-integration-starlite.yml index 646c0c07fd..6d9a8f5212 100644 --- a/.github/workflows/test-integration-starlite.yml +++ b/.github/workflows/test-integration-starlite.yml @@ -64,7 +64,6 @@ jobs: with: token: ${{ secrets.CODECOV_TOKEN }} files: coverage.xml - verbose: true # optional (default = false) check_required_tests: name: All starlite tests passed or skipped diff --git a/.github/workflows/test-integration-tornado.yml b/.github/workflows/test-integration-tornado.yml index cccbd2b8f4..f5f6921261 100644 --- a/.github/workflows/test-integration-tornado.yml +++ b/.github/workflows/test-integration-tornado.yml @@ -64,7 +64,6 @@ jobs: with: token: ${{ secrets.CODECOV_TOKEN }} files: coverage.xml - verbose: true # optional (default = false) check_required_tests: name: All tornado tests passed or skipped diff --git a/.github/workflows/test-integration-trytond.yml b/.github/workflows/test-integration-trytond.yml index a2ea124245..64d2a0b9f6 100644 --- a/.github/workflows/test-integration-trytond.yml +++ b/.github/workflows/test-integration-trytond.yml @@ -64,7 +64,6 @@ jobs: with: token: ${{ secrets.CODECOV_TOKEN }} files: coverage.xml - verbose: true # optional (default = false) check_required_tests: name: All trytond tests passed or skipped diff --git a/scripts/split-tox-gh-actions/ci-yaml.txt b/scripts/split-tox-gh-actions/ci-yaml.txt index 99f6ffe1c2..24c8072e97 100644 --- a/scripts/split-tox-gh-actions/ci-yaml.txt +++ b/scripts/split-tox-gh-actions/ci-yaml.txt @@ -56,7 +56,6 @@ jobs: with: token: ${{ secrets.CODECOV_TOKEN }} files: coverage.xml - verbose: true # optional (default = false) check_required_tests: name: All {{ framework }} tests passed or skipped From 1856bb4dcca78fa6f2aebb830ba3570aecc38b2c Mon Sep 17 00:00:00 2001 From: Anton Pirker Date: Thu, 13 Apr 2023 16:32:59 +0200 Subject: [PATCH 5/5] Updated codecov config --- codecov.yml | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/codecov.yml b/codecov.yml index 5d2dcbd0c7..93a5b687e4 100644 --- a/codecov.yml +++ b/codecov.yml @@ -1,12 +1,11 @@ +comment: false coverage: status: project: - default: false - patch: - default: false - python: - target: 65% -comment: false + default: + target: auto # auto compares coverage to the previous base commit + threshold: 10% # this allows a 10% drop from the previous base commit coverage + informational: true ignore: - "tests" - "sentry_sdk/_types.py"