From 95c520948ece29953272f71367bd8a4c6f6a80d2 Mon Sep 17 00:00:00 2001 From: Christophe Papazian <114495376+christophe-papazian@users.noreply.github.com> Date: Tue, 20 Jun 2023 16:37:07 +0200 Subject: [PATCH] chore(test): upgrade asyncpg version for framework tests (#6165) Last version of setuptools seems to break github action framework tests. Fix it by upgrading the version of asyncpg. ## Checklist - [x] Change(s) are motivated and described in the PR description. - [x] Testing strategy is described if automated tests are not included in the PR. - [x] Risk is outlined (performance impact, potential for breakage, maintainability, etc). - [x] Change is maintainable (easy to change, telemetry, documentation). - [x] [Library release note guidelines](https://ddtrace.readthedocs.io/en/stable/releasenotes.html) are followed. If no release note is required, add label `changelog/no-changelog`. - [x] Documentation is included (in-code, generated user docs, [public corp docs](https://github.com/DataDog/documentation/)). - [x] Backport labels are set (if [applicable](../docs/contributing.rst#release-branch-maintenance)) ## Reviewer Checklist - [x] Title is accurate. - [x] No unnecessary changes are introduced. - [x] Description motivates each change. - [x] Avoids breaking [API](https://ddtrace.readthedocs.io/en/stable/versioning.html#interfaces) changes unless absolutely necessary. - [x] Testing strategy adequately addresses listed risk(s). - [x] Change is maintainable (easy to change, telemetry, documentation). - [x] Release note makes sense to a user of the library. - [x] Reviewer has explicitly acknowledged and discussed the performance implications of this PR as reported in the benchmarks PR comment. - [x] Backport labels are set in a manner that is consistent with the [release branch maintenance policy](../docs/contributing.rst#release-branch-maintenance) (cherry picked from commit 021a9b2466a9a603ef6101a6eb1bab60da2864e0) --- .github/workflows/test_frameworks.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test_frameworks.yml b/.github/workflows/test_frameworks.yml index 242e5709f0f..172835b42c4 100644 --- a/.github/workflows/test_frameworks.yml +++ b/.github/workflows/test_frameworks.yml @@ -380,7 +380,7 @@ jobs: - name: Run tests run: PYTHONPATH=../ddtrace/tests/debugging/exploration/ ddtrace-run pytest -p no:warnings tests - asyncpg-testsuite-0_25_0: + asyncpg-testsuite-0_27_0: # https://github.com/MagicStack/asyncpg/blob/v0.25.0/.github/workflows/tests.yml#L125 runs-on: "ubuntu-latest" env: @@ -399,7 +399,7 @@ jobs: - uses: actions/checkout@v3 with: repository: magicstack/asyncpg - ref: v0.25.0 + ref: v0.27.0 path: asyncpg fetch-depth: 50 submodules: true