Skip to content

Commit

Permalink
Merge branch 'main' into kludex/types-urllib
Browse files Browse the repository at this point in the history
  • Loading branch information
Kludex authored Jan 2, 2025
2 parents 585a254 + 3d5935f commit 3a39918
Show file tree
Hide file tree
Showing 135 changed files with 5,640 additions and 2,414 deletions.
66 changes: 66 additions & 0 deletions .github/workflows/core_contrib_test_0.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,50 @@ jobs:
- name: Run tests
run: tox -e py38-test-instrumentation-openai-v2-1 -- -ra

py38-test-instrumentation-vertexai-0:
name: instrumentation-vertexai-0
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

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

py38-test-instrumentation-vertexai-1:
name: instrumentation-vertexai-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

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

py38-test-resource-detector-container:
name: resource-detector-container
runs-on: ubuntu-latest
Expand Down Expand Up @@ -613,6 +657,28 @@ jobs:
- name: Run tests
run: tox -e py38-test-instrumentation-falcon-2 -- -ra

py38-test-instrumentation-falcon-3:
name: instrumentation-falcon-3
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

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

py38-test-instrumentation-fastapi:
name: instrumentation-fastapi
runs-on: ubuntu-latest
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/generate_workflows_lib/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Typing :: Typed",
]
dependencies = ["Jinja2", "tox"]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ def get_test_job_datas(tox_envs: list, operating_systems: list) -> list:
"py310": "3.10",
"py311": "3.11",
"py312": "3.12",
"py313": "3.13",
}

test_job_datas = []
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@ jobs:
- name: Checkout repo @ SHA - ${% raw %}{{ github.sha }}{% endraw %}
uses: actions/checkout@v4

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

- name: Install tox
run: pip install tox
Expand Down
Loading

0 comments on commit 3a39918

Please sign in to comment.