mirror of
https://github.com/open-telemetry/opentelemetry-python-contrib.git
synced 2025-07-28 04:34:01 +08:00
fix schema url in instrumentation tests (#2730)
* fix schema url in instrumentation tests * change core repo sha for test * Update CORE_REPO_SHA * Try removing cache * Clear cache here as well --------- Co-authored-by: Diego Hurtado <ocelotl@users.noreply.github.com>
This commit is contained in:
4
.github/workflows/instrumentations_0.yml
vendored
4
.github/workflows/instrumentations_0.yml
vendored
@ -6,7 +6,7 @@ on:
|
||||
- 'release/*'
|
||||
pull_request:
|
||||
env:
|
||||
CORE_REPO_SHA: 141a6a2e473ef7f0ec4915dfb71e3c0fa595283e
|
||||
CORE_REPO_SHA: main
|
||||
|
||||
jobs:
|
||||
instrumentations-0:
|
||||
@ -114,6 +114,6 @@ jobs:
|
||||
path: |
|
||||
.tox
|
||||
~/.cache/pip
|
||||
key: v7-build-tox-cache-${{ env.RUN_MATRIX_COMBINATION }}-${{ hashFiles('tox.ini', 'gen-requirements.txt', 'dev-requirements.txt') }}
|
||||
key: v7-build-tox-cache-${{ env.RUN_MATRIX_COMBINATION }}-${{ hashFiles('gen-requirements.txt', 'dev-requirements.txt') }}
|
||||
- name: run tox
|
||||
run: tox -f ${{ matrix.python-version }}-${{ matrix.package }} -- -ra
|
||||
|
4
.github/workflows/instrumentations_1.yml
vendored
4
.github/workflows/instrumentations_1.yml
vendored
@ -6,7 +6,7 @@ on:
|
||||
- 'release/*'
|
||||
pull_request:
|
||||
env:
|
||||
CORE_REPO_SHA: 141a6a2e473ef7f0ec4915dfb71e3c0fa595283e
|
||||
CORE_REPO_SHA: main
|
||||
|
||||
jobs:
|
||||
instrumentations-1:
|
||||
@ -59,6 +59,6 @@ jobs:
|
||||
path: |
|
||||
.tox
|
||||
~/.cache/pip
|
||||
key: v7-build-tox-cache-${{ env.RUN_MATRIX_COMBINATION }}-${{ hashFiles('tox.ini', 'gen-requirements.txt', 'dev-requirements.txt') }}
|
||||
key: v7-build-tox-cache-${{ env.RUN_MATRIX_COMBINATION }}-${{ hashFiles('gen-requirements.txt', 'dev-requirements.txt') }}
|
||||
- name: run tox
|
||||
run: tox -f ${{ matrix.python-version }}-${{ matrix.package }} -- -ra
|
||||
|
2
.github/workflows/lint.yml
vendored
2
.github/workflows/lint.yml
vendored
@ -6,7 +6,7 @@ on:
|
||||
- 'release/*'
|
||||
pull_request:
|
||||
env:
|
||||
CORE_REPO_SHA: 141a6a2e473ef7f0ec4915dfb71e3c0fa595283e
|
||||
CORE_REPO_SHA: main
|
||||
|
||||
jobs:
|
||||
lint-3_12:
|
||||
|
2
.github/workflows/test.yml
vendored
2
.github/workflows/test.yml
vendored
@ -6,7 +6,7 @@ on:
|
||||
- 'release/*'
|
||||
pull_request:
|
||||
env:
|
||||
CORE_REPO_SHA: 141a6a2e473ef7f0ec4915dfb71e3c0fa595283e
|
||||
CORE_REPO_SHA: main
|
||||
|
||||
jobs:
|
||||
misc:
|
||||
|
@ -223,7 +223,7 @@ class TestAioHttpIntegration(TestBase):
|
||||
span = self.memory_exporter.get_finished_spans()[0]
|
||||
self.assertEqual(
|
||||
span.instrumentation_info.schema_url,
|
||||
"https://opentelemetry.io/schemas/v1.21.0",
|
||||
"https://opentelemetry.io/schemas/1.21.0",
|
||||
)
|
||||
self.memory_exporter.clear()
|
||||
|
||||
@ -240,7 +240,7 @@ class TestAioHttpIntegration(TestBase):
|
||||
span = self.memory_exporter.get_finished_spans()[0]
|
||||
self.assertEqual(
|
||||
span.instrumentation_info.schema_url,
|
||||
"https://opentelemetry.io/schemas/v1.21.0",
|
||||
"https://opentelemetry.io/schemas/1.21.0",
|
||||
)
|
||||
self.memory_exporter.clear()
|
||||
|
||||
|
@ -239,7 +239,7 @@ class TestURLLib3Instrumentor(TestBase):
|
||||
span = self.assert_span()
|
||||
self.assertEqual(
|
||||
span.instrumentation_scope.schema_url,
|
||||
"https://opentelemetry.io/schemas/v1.21.0",
|
||||
"https://opentelemetry.io/schemas/1.21.0",
|
||||
)
|
||||
|
||||
def test_schema_url_both_semconv(self):
|
||||
@ -250,7 +250,7 @@ class TestURLLib3Instrumentor(TestBase):
|
||||
span = self.assert_span()
|
||||
self.assertEqual(
|
||||
span.instrumentation_scope.schema_url,
|
||||
"https://opentelemetry.io/schemas/v1.21.0",
|
||||
"https://opentelemetry.io/schemas/1.21.0",
|
||||
)
|
||||
|
||||
def test_basic_not_found(self):
|
||||
|
Reference in New Issue
Block a user