Skip to content

Commit

Permalink
Merge branch 'open-telemetry:main' into fix/1477
Browse files Browse the repository at this point in the history
  • Loading branch information
aryabharat authored Feb 2, 2025
2 parents a367cd0 + 65a2713 commit 5cb5d9d
Show file tree
Hide file tree
Showing 80 changed files with 6,485 additions and 592 deletions.
3 changes: 3 additions & 0 deletions .github/component_owners.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,9 @@ components:
instrumentation/opentelemetry-instrumentation-psycopg:
- federicobond

instrumentation/opentelemetry-instrumentation-pymssql:
- guillaumep

instrumentation/opentelemetry-instrumentation-aiokafka:
- dimastbk

Expand Down
72 changes: 69 additions & 3 deletions .github/workflows/core_contrib_test_0.yml
Original file line number Diff line number Diff line change
Expand Up @@ -349,8 +349,8 @@ jobs:
- name: Run tests
run: tox -e py38-test-instrumentation-aws-lambda -- -ra

py38-test-instrumentation-botocore:
name: instrumentation-botocore
py38-test-instrumentation-botocore-0:
name: instrumentation-botocore-0
runs-on: ubuntu-latest
steps:
- name: Checkout contrib repo @ SHA - ${{ env.CONTRIB_REPO_SHA }}
Expand All @@ -369,7 +369,29 @@ jobs:
run: pip install tox-uv

- name: Run tests
run: tox -e py38-test-instrumentation-botocore -- -ra
run: tox -e py38-test-instrumentation-botocore-0 -- -ra

py38-test-instrumentation-botocore-1:
name: instrumentation-botocore-1
runs-on: ubuntu-latest
steps:
- name: Checkout contrib repo @ SHA - ${{ env.CONTRIB_REPO_SHA }}
uses: actions/checkout@v4
with:
repository: open-telemetry/opentelemetry-python-contrib
ref: ${{ env.CONTRIB_REPO_SHA }}

- name: Set up Python 3.8
uses: actions/setup-python@v5
with:
python-version: "3.8"
architecture: "x64"

- name: Install tox
run: pip install tox-uv

- name: Run tests
run: tox -e py38-test-instrumentation-botocore-1 -- -ra

py38-test-instrumentation-boto3sqs:
name: instrumentation-boto3sqs
Expand Down Expand Up @@ -1053,6 +1075,28 @@ jobs:
- name: Run tests
run: tox -e py38-test-instrumentation-psycopg2 -- -ra

py38-test-instrumentation-psycopg2-binary:
name: instrumentation-psycopg2-binary
runs-on: ubuntu-latest
steps:
- name: Checkout contrib repo @ SHA - ${{ env.CONTRIB_REPO_SHA }}
uses: actions/checkout@v4
with:
repository: open-telemetry/opentelemetry-python-contrib
ref: ${{ env.CONTRIB_REPO_SHA }}

- name: Set up Python 3.8
uses: actions/setup-python@v5
with:
python-version: "3.8"
architecture: "x64"

- name: Install tox
run: pip install tox-uv

- name: Run tests
run: tox -e py38-test-instrumentation-psycopg2-binary -- -ra

py38-test-instrumentation-psycopg:
name: instrumentation-psycopg
runs-on: ubuntu-latest
Expand Down Expand Up @@ -1229,6 +1273,28 @@ jobs:
- name: Run tests
run: tox -e py38-test-instrumentation-pymysql -- -ra

py38-test-instrumentation-pymssql:
name: instrumentation-pymssql
runs-on: ubuntu-latest
steps:
- name: Checkout contrib repo @ SHA - ${{ env.CONTRIB_REPO_SHA }}
uses: actions/checkout@v4
with:
repository: open-telemetry/opentelemetry-python-contrib
ref: ${{ env.CONTRIB_REPO_SHA }}

- name: Set up Python 3.8
uses: actions/setup-python@v5
with:
python-version: "3.8"
architecture: "x64"

- name: Install tox
run: pip install tox-uv

- name: Run tests
run: tox -e py38-test-instrumentation-pymssql -- -ra

py38-test-instrumentation-pyramid:
name: instrumentation-pyramid
runs-on: ubuntu-latest
Expand Down
18 changes: 18 additions & 0 deletions .github/workflows/lint_0.yml
Original file line number Diff line number Diff line change
Expand Up @@ -664,6 +664,24 @@ jobs:
- name: Run tests
run: tox -e lint-instrumentation-pymysql

lint-instrumentation-pymssql:
name: instrumentation-pymssql
runs-on: ubuntu-latest
steps:
- name: Checkout repo @ SHA - ${{ github.sha }}
uses: actions/checkout@v4

- name: Set up Python 3.13
uses: actions/setup-python@v5
with:
python-version: "3.13"

- name: Install tox
run: pip install tox-uv

- name: Run tests
run: tox -e lint-instrumentation-pymssql

lint-instrumentation-pyramid:
name: instrumentation-pyramid
runs-on: ubuntu-latest
Expand Down
Loading

0 comments on commit 5cb5d9d

Please sign in to comment.