Skip to content

Commit b320348

Browse files
Merge pull request #36 from anaconda/DATAPROD-513
use package nesting for anaconda.opentelemetry
2 parents b6794c7 + bd27393 commit b320348

25 files changed

Lines changed: 127 additions & 125 deletions

.github/workflows/pr-merge.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
- name: Run UT
3939
shell: bash
4040
run: |
41-
OTEL_USE_CONSOLE_EXPORTER=TRUE pytest --color=yes --cov=./anaconda_opentelemetry --cov-report=html --cov-report=term-missing tests/unit_tests
41+
OTEL_USE_CONSOLE_EXPORTER=TRUE pytest --color=yes --cov=./anaconda/opentelemetry --cov-report=html --cov-report=term-missing tests/unit_tests
4242
4343
- name: Run Build Script
4444
shell: bash

.github/workflows/pull-request-ut.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
with:
2222
filters: |
2323
package:
24-
- 'anaconda_opentelemetry/**'
24+
- 'anaconda/opentelemetry/**'
2525
2626
unit-tests:
2727
needs: detect-changes
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@
66

77
# DO NOT Change the __SDK_VERSION__ line!!! MUST be "0.0.0.devbuild"!!
88
__SDK_VERSION__ = "0.0.0.devbuild"
9-
__TELEMETRY_SCHEMA_VERSION__ = "0.3.0"
9+
__TELEMETRY_SCHEMA_VERSION__ = "0.3.0"
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -484,7 +484,7 @@ def _setup_tracing(self, config: Config) -> trace.Tracer:
484484
try:
485485
trace.set_tracer_provider(tracer_provider)
486486
except Exception:
487-
self.logger.warning(f"The tracer provider was previously set, and will take precidence over the set in this package: anaconda_opentelemetry.")
487+
self.logger.warning(f"The tracer provider was previously set, and will take precidence over the set in this package: anacondaopentelemetry.")
488488

489489
# Get tracer for this service
490490
return trace.get_tracer(self.service_name, self.service_version)

docs/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
import sys
1313

1414
sys.path.insert(0, os.path.abspath('../../')) # adjust path as needed
15-
from anaconda_opentelemetry import __version__
15+
from anaconda.opentelemetry import __version__
1616

1717
project = 'Anaconda OpenTelemetry Wrapper'
1818
copyright = '2025, Anaconda, Inc.'

0 commit comments

Comments
 (0)