Skip to content

Commit 14d0200

Browse files
committed
2 parents 226c8e6 + ce7f69a commit 14d0200

File tree

248 files changed

+11335
-1485
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

248 files changed

+11335
-1485
lines changed

.github/component_owners.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,9 @@ components:
6161
instrumentation/opentelemetry-instrumentation-psycopg:
6262
- federicobond
6363

64+
instrumentation/opentelemetry-instrumentation-pymssql:
65+
- guillaumep
66+
6467
instrumentation/opentelemetry-instrumentation-aiokafka:
6568
- dimastbk
6669

.github/workflows/core_contrib_test_0.yml

Lines changed: 69 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -349,8 +349,8 @@ jobs:
349349
- name: Run tests
350350
run: tox -e py38-test-instrumentation-aws-lambda -- -ra
351351

352-
py38-test-instrumentation-botocore:
353-
name: instrumentation-botocore
352+
py38-test-instrumentation-botocore-0:
353+
name: instrumentation-botocore-0
354354
runs-on: ubuntu-latest
355355
steps:
356356
- name: Checkout contrib repo @ SHA - ${{ env.CONTRIB_REPO_SHA }}
@@ -369,7 +369,29 @@ jobs:
369369
run: pip install tox-uv
370370

371371
- name: Run tests
372-
run: tox -e py38-test-instrumentation-botocore -- -ra
372+
run: tox -e py38-test-instrumentation-botocore-0 -- -ra
373+
374+
py38-test-instrumentation-botocore-1:
375+
name: instrumentation-botocore-1
376+
runs-on: ubuntu-latest
377+
steps:
378+
- name: Checkout contrib repo @ SHA - ${{ env.CONTRIB_REPO_SHA }}
379+
uses: actions/checkout@v4
380+
with:
381+
repository: open-telemetry/opentelemetry-python-contrib
382+
ref: ${{ env.CONTRIB_REPO_SHA }}
383+
384+
- name: Set up Python 3.8
385+
uses: actions/setup-python@v5
386+
with:
387+
python-version: "3.8"
388+
architecture: "x64"
389+
390+
- name: Install tox
391+
run: pip install tox-uv
392+
393+
- name: Run tests
394+
run: tox -e py38-test-instrumentation-botocore-1 -- -ra
373395

374396
py38-test-instrumentation-boto3sqs:
375397
name: instrumentation-boto3sqs
@@ -1053,6 +1075,28 @@ jobs:
10531075
- name: Run tests
10541076
run: tox -e py38-test-instrumentation-psycopg2 -- -ra
10551077

1078+
py38-test-instrumentation-psycopg2-binary:
1079+
name: instrumentation-psycopg2-binary
1080+
runs-on: ubuntu-latest
1081+
steps:
1082+
- name: Checkout contrib repo @ SHA - ${{ env.CONTRIB_REPO_SHA }}
1083+
uses: actions/checkout@v4
1084+
with:
1085+
repository: open-telemetry/opentelemetry-python-contrib
1086+
ref: ${{ env.CONTRIB_REPO_SHA }}
1087+
1088+
- name: Set up Python 3.8
1089+
uses: actions/setup-python@v5
1090+
with:
1091+
python-version: "3.8"
1092+
architecture: "x64"
1093+
1094+
- name: Install tox
1095+
run: pip install tox-uv
1096+
1097+
- name: Run tests
1098+
run: tox -e py38-test-instrumentation-psycopg2-binary -- -ra
1099+
10561100
py38-test-instrumentation-psycopg:
10571101
name: instrumentation-psycopg
10581102
runs-on: ubuntu-latest
@@ -1229,6 +1273,28 @@ jobs:
12291273
- name: Run tests
12301274
run: tox -e py38-test-instrumentation-pymysql -- -ra
12311275

1276+
py38-test-instrumentation-pymssql:
1277+
name: instrumentation-pymssql
1278+
runs-on: ubuntu-latest
1279+
steps:
1280+
- name: Checkout contrib repo @ SHA - ${{ env.CONTRIB_REPO_SHA }}
1281+
uses: actions/checkout@v4
1282+
with:
1283+
repository: open-telemetry/opentelemetry-python-contrib
1284+
ref: ${{ env.CONTRIB_REPO_SHA }}
1285+
1286+
- name: Set up Python 3.8
1287+
uses: actions/setup-python@v5
1288+
with:
1289+
python-version: "3.8"
1290+
architecture: "x64"
1291+
1292+
- name: Install tox
1293+
run: pip install tox-uv
1294+
1295+
- name: Run tests
1296+
run: tox -e py38-test-instrumentation-pymssql -- -ra
1297+
12321298
py38-test-instrumentation-pyramid:
12331299
name: instrumentation-pyramid
12341300
runs-on: ubuntu-latest

.github/workflows/lint_0.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -664,6 +664,24 @@ jobs:
664664
- name: Run tests
665665
run: tox -e lint-instrumentation-pymysql
666666

667+
lint-instrumentation-pymssql:
668+
name: instrumentation-pymssql
669+
runs-on: ubuntu-latest
670+
steps:
671+
- name: Checkout repo @ SHA - ${{ github.sha }}
672+
uses: actions/checkout@v4
673+
674+
- name: Set up Python 3.13
675+
uses: actions/setup-python@v5
676+
with:
677+
python-version: "3.13"
678+
679+
- name: Install tox
680+
run: pip install tox-uv
681+
682+
- name: Run tests
683+
run: tox -e lint-instrumentation-pymssql
684+
667685
lint-instrumentation-pyramid:
668686
name: instrumentation-pyramid
669687
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)