Skip to content

Commit 17cbaac

Browse files
committed
tox -e generate,generate-workflows
1 parent e63f418 commit 17cbaac

File tree

6 files changed

+606
-360
lines changed

6 files changed

+606
-360
lines changed

.github/workflows/core_contrib_test_0.yml

+44
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,50 @@ jobs:
6363
- name: Run tests
6464
run: tox -e py38-test-instrumentation-openai-v2-1 -- -ra
6565

66+
py38-test-instrumentation-vertexai-0:
67+
name: instrumentation-vertexai-0
68+
runs-on: ubuntu-latest
69+
steps:
70+
- name: Checkout contrib repo @ SHA - ${{ env.CONTRIB_REPO_SHA }}
71+
uses: actions/checkout@v4
72+
with:
73+
repository: open-telemetry/opentelemetry-python-contrib
74+
ref: ${{ env.CONTRIB_REPO_SHA }}
75+
76+
- name: Set up Python 3.8
77+
uses: actions/setup-python@v5
78+
with:
79+
python-version: "3.8"
80+
architecture: "x64"
81+
82+
- name: Install tox
83+
run: pip install tox
84+
85+
- name: Run tests
86+
run: tox -e py38-test-instrumentation-vertexai-0 -- -ra
87+
88+
py38-test-instrumentation-vertexai-1:
89+
name: instrumentation-vertexai-1
90+
runs-on: ubuntu-latest
91+
steps:
92+
- name: Checkout contrib repo @ SHA - ${{ env.CONTRIB_REPO_SHA }}
93+
uses: actions/checkout@v4
94+
with:
95+
repository: open-telemetry/opentelemetry-python-contrib
96+
ref: ${{ env.CONTRIB_REPO_SHA }}
97+
98+
- name: Set up Python 3.8
99+
uses: actions/setup-python@v5
100+
with:
101+
python-version: "3.8"
102+
architecture: "x64"
103+
104+
- name: Install tox
105+
run: pip install tox
106+
107+
- name: Run tests
108+
run: tox -e py38-test-instrumentation-vertexai-1 -- -ra
109+
66110
py38-test-resource-detector-container:
67111
name: resource-detector-container
68112
runs-on: ubuntu-latest

.github/workflows/lint_0.yml

+18
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,24 @@ jobs:
3434
- name: Run tests
3535
run: tox -e lint-instrumentation-openai-v2
3636

37+
lint-instrumentation-vertexai:
38+
name: instrumentation-vertexai
39+
runs-on: ubuntu-latest
40+
steps:
41+
- name: Checkout repo @ SHA - ${{ github.sha }}
42+
uses: actions/checkout@v4
43+
44+
- name: Set up Python 3.12
45+
uses: actions/setup-python@v5
46+
with:
47+
python-version: "3.12"
48+
49+
- name: Install tox
50+
run: pip install tox
51+
52+
- name: Run tests
53+
run: tox -e lint-instrumentation-vertexai
54+
3755
lint-resource-detector-container:
3856
name: resource-detector-container
3957
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)