Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .changelog/4841.fixed
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
`opentelemetry-instrumentation-botocore`: Restore PyPy test coverage.
38 changes: 38 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3387,6 +3387,44 @@ jobs:
- name: Run tests
run: tox -e py314-test-instrumentation-botocore-3 -- -ra

pypy3-test-instrumentation-botocore-1-wrapt2_ubuntu-latest:
name: instrumentation-botocore-1-wrapt2 pypy-3.10 Ubuntu
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- name: Checkout repo @ SHA - ${{ github.sha }}
uses: actions/checkout@v4

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

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

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

pypy3-test-instrumentation-botocore-3_ubuntu-latest:
name: instrumentation-botocore-3 pypy-3.10 Ubuntu
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- name: Checkout repo @ SHA - ${{ github.sha }}
uses: actions/checkout@v4

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

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

- name: Run tests
run: tox -e pypy3-test-instrumentation-botocore-3 -- -ra

py310-test-instrumentation-boto3sqs_ubuntu-latest:
name: instrumentation-boto3sqs 3.10 Ubuntu
runs-on: ubuntu-latest
Expand Down
4 changes: 2 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -95,8 +95,8 @@ envlist =
; opentelemetry-instrumentation-botocore
py3{10,11,12,13,14}-test-instrumentation-botocore-{0,1}-{wrapt1,wrapt2}
py3{10,11,12,13,14}-test-instrumentation-botocore-{2,3}
; FIXME: see https://github.com/open-telemetry/opentelemetry-python-contrib/issues/1736
; pypy3-test-instrumentation-botocore
pypy3-test-instrumentation-botocore-1-wrapt2
pypy3-test-instrumentation-botocore-3
lint-instrumentation-botocore

; opentelemetry-instrumentation-boto3sqs
Expand Down
Loading