Skip to content

fix(tracing): add flag for aiohttp that disables potential for memory leak #14192

fix(tracing): add flag for aiohttp that disables potential for memory leak

fix(tracing): add flag for aiohttp that disables potential for memory leak #14192

Workflow file for this run

name: UnitTests
on:
push:
branches:
- main
- 'mq-working-branch**'
pull_request:
workflow_dispatch: {}
jobs:
unit-tests:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
# Keep this in sync with hatch.toml
python-version: ["3.10", "3.12"]
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
# Include all history and tags
with:
persist-credentials: false
fetch-depth: 0
- uses: actions-rust-lang/setup-rust-toolchain@11df97af8e8102fd60b60a77dfbf58d40cd843b8 # v1.10.1
- name: Install latest stable toolchain and rustfmt
run: rustup update stable && rustup default stable && rustup component add rustfmt clippy
- name: Install hatch
uses: pypa/hatch@257e27e51a6a5616ed08a39a408a21c35c9931bc # install
with:
version: "1.12.0"
- name: Install coreutils for MacOS to get sha256sum
if: matrix.os == 'macos-latest'
run: brew install coreutils
- name: Run tests
run: hatch run +py=${{ matrix.python-version }} ddtrace_unit_tests:test