Skip to content

Commit

Permalink
ci: remove erroneously committed breakpoint [backport 1.18] (#6653)
Browse files Browse the repository at this point in the history
Backport 28413cc from #6625 to 1.18.

## 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](https://ddtrace.readthedocs.io/en/latest/contributing.html#backporting))

## 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](https://ddtrace.readthedocs.io/en/latest/contributing.html#backporting)

Co-authored-by: Emmett Butler <[email protected]>
  • Loading branch information
github-actions[bot] and emmettbutler authored Aug 11, 2023
1 parent fbfc8ba commit d365ea1
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion tests/contrib/psycopg/test_psycopg_async.py
Original file line number Diff line number Diff line change
Expand Up @@ -337,7 +337,6 @@ async def test_cursor_context_execute(self):

query = SQL("""select 'one' as x""")
async with (await psycopg.AsyncConnection.connect(**POSTGRES_CONFIG)).cursor() as cur:
breakpoint()
await cur.execute(query)
rows = await cur.fetchall()

Expand Down

0 comments on commit d365ea1

Please sign in to comment.